UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

14 lines (13 loc) 271 B
/** * Transformations of coordinate */ export declare type Transformations = Array<{ /** send (x, y) to (-x, y) */ type: 'reflectX'; } | { /** send (x, y) to (x, -y) */ type: 'reflectY'; } | { /** send (x, y) to (y, x) */ type: 'transpose'; }>;