UNPKG

299 BTypeScriptView Raw
1import Continuous from './base';
2/**
3 * 分段度量
4 */
5declare 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}
12export default Quantize;