UNPKG

412 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { DodgeXTransform } from '../spec';
3export type DodgeXOptions = Omit<DodgeXTransform, 'type'>;
4/**
5 * The dodge group marks into series by color or series channel,
6 * and then produce new series channel for each series by specified order,
7 * say to form horizontal "columns" by specified channels.
8 */
9export declare const DodgeX: TC<DodgeXOptions>;