@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines (8 loc) • 332 B
TypeScript
import { TransformComponent as TC } from '../runtime';
import { DiffYTransform } from '../spec';
export type DiffYOptions = Omit<DiffYTransform, 'type'>;
/**
* The DiffY transform apply offset for y0 channels.
* Keep y unchanged, set y1 = max(otherY), if y1 > y, remove the data.
*/
export declare const DiffY: TC<DiffYOptions>;