@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines (8 loc) • 375 B
TypeScript
import { TransformComponent as TC } from '../runtime';
import { JitterYTransform } from '../spec';
export type JitterYOptions = Omit<JitterYTransform, 'type'>;
/**
* The JitterY transform produce dy channels for marks (especially for point)
* with ordinal x and y dimension, say to make them jitter in their own space.
*/
export declare const JitterY: TC<JitterYOptions>;