stackY.d.ts 404 B

123456789
  1. import { TransformComponent as TC } from '../runtime';
  2. import { StackYTransform } from '../spec';
  3. export type StackYOptions = Omit<StackYTransform, 'type'>;
  4. /**
  5. * The stack transform group marks into series by color channel,
  6. * and then produce new y channel for each series by specified order,
  7. * say to form vertical "stacks" by specified channels.
  8. */
  9. export declare const StackY: TC<StackYOptions>;