transpose.d.ts 312 B

1234567
  1. import { CoordinateComponent as CC } from '../runtime';
  2. import { TransposeCoordinate } from '../spec';
  3. export type TransposeOptions = Omit<TransposeCoordinate, 'type'>;
  4. /**
  5. * Transpose transformation for transposing chart according to center of canvas.
  6. */
  7. export declare const Transpose: CC<TransposeOptions>;