UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

10 lines (9 loc) 412 B
import { TransformComponent as TC } from '../runtime'; import { DodgeXTransform } from '../spec'; export type DodgeXOptions = Omit<DodgeXTransform, 'type'>; /** * The dodge group marks into series by color or series channel, * and then produce new series channel for each series by specified order, * say to form horizontal "columns" by specified channels. */ export declare const DodgeX: TC<DodgeXOptions>;