UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

18 lines (17 loc) 297 B
/** * Transformations of coordinate */ export 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'; } >;