@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines (8 loc) • 375 B
TypeScript
import { TransformComponent as TC } from '../runtime';
import { JitterXTransform } from '../spec';
export type JitterXOptions = Omit<JitterXTransform, 'type'>;
/**
* The JitterX 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 JitterX: TC<JitterXOptions>;