You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
490 B
14 lines
490 B
import { Continuous } from './continuous';
|
|
import { LogOptions, TickMethodOptions } from '../types';
|
|
/**
|
|
* Linear 比例尺
|
|
*
|
|
* 构造一个线性的对数比例尺
|
|
*/
|
|
export declare class Log extends Continuous<LogOptions> {
|
|
protected getDefaultOptions(): LogOptions;
|
|
protected chooseNice(): import("../types").TickMethod<number>;
|
|
protected getTickMethodOptions(): TickMethodOptions<number>;
|
|
protected chooseTransforms(): ((x: number) => number)[];
|
|
clone(): Log;
|
|
}
|
|
|