UNPKG

454 BTypeScriptView Raw
1import { Continuous } from './continuous';
2import { LogOptions } from '../types';
3/**
4 * Linear 比例尺
5 *
6 * 构造一个线性的对数比例尺
7 */
8export declare class Log extends Continuous<LogOptions> {
9 protected getDefaultOptions(): LogOptions;
10 protected chooseNice(): import("../types").TickMethod<number>;
11 protected getTickMethodOptions(): number[];
12 protected chooseTransforms(): ((x: number) => number)[];
13 clone(): Log;
14}
15
\No newline at end of file