UNPKG

393 BTypeScriptView Raw
1import Continuous from './base';
2/**
3 * Log 度量,处理非均匀分布
4 */
5declare class Log extends Continuous {
6 readonly type: string;
7 base: number;
8 private positiveMin;
9 /**
10 * @override
11 */
12 invert(value: number): number;
13 protected initCfg(): void;
14 protected setDomain(): void;
15 protected getScalePercent(value: number): any;
16}
17export default Log;