UNPKG

404 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { StackYTransform } from '../spec';
3export 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 */
9export declare const StackY: TC<StackYOptions>;