UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

10 lines (9 loc) 404 B
import { TransformComponent as TC } from '../runtime'; import { StackYTransform } from '../spec'; export type StackYOptions = Omit<StackYTransform, 'type'>; /** * The stack transform group marks into series by color channel, * and then produce new y channel for each series by specified order, * say to form vertical "stacks" by specified channels. */ export declare const StackY: TC<StackYOptions>;