UNPKG

729 BTypeScriptView Raw
1import { Threshold } from './threshold';
2import { QuantizeOptions, Range } from '../types';
3/**
4 * 类似 Threshold 比例尺,区别在于 thresholds 是根据连续的 domain 根据离散的 range 的数量计算而得到的。
5 */
6export declare class Quantize extends Threshold<QuantizeOptions> {
7 protected getDefaultOptions(): QuantizeOptions;
8 constructor(options?: QuantizeOptions);
9 protected nice(): void;
10 getTicks(): number[];
11 protected getTickMethodOptions(): number[];
12 protected rescale(): void;
13 /**
14 * 如果是在第一段后或者最后一段就把两端的值添加上
15 */
16 invert(y: Range<QuantizeOptions>): number[];
17 getThresholds(): number[];
18 clone(): Quantize;
19}