dodgeX.d.ts 412 B

123456789
  1. import { TransformComponent as TC } from '../runtime';
  2. import { DodgeXTransform } from '../spec';
  3. export 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. */
  9. export declare const DodgeX: TC<DodgeXOptions>;