quantize.d.ts 299 B

123456789101112
  1. import Continuous from './base';
  2. /**
  3. * 分段度量
  4. */
  5. declare class Quantize extends Continuous {
  6. type: string;
  7. invert(value: any): number;
  8. protected initCfg(): void;
  9. protected calculateTicks(): any[];
  10. protected getScalePercent(value: any): number;
  11. }
  12. export default Quantize;