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