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.
13 lines
434 B
13 lines
434 B
import { Continuous } from './continuous';
|
|
import { LinearOptions, Transform } from '../types';
|
|
import { Base } from './base';
|
|
/**
|
|
* Linear 比例尺
|
|
*
|
|
* 构造可创建一个在输入和输出之间具有线性关系的比例尺
|
|
*/
|
|
export declare class Linear extends Continuous<LinearOptions> {
|
|
protected getDefaultOptions(): LinearOptions;
|
|
protected chooseTransforms(): Transform[];
|
|
clone(): Base<LinearOptions>;
|
|
}
|
|
|