@antv/scale
Version:
Toolkit for mapping abstract data into visual representation.
33 lines (28 loc) • 711 B
text/typescript
import { createInterpolateValue } from '../utils';
import { SqrtOptions, PowOptions } from '../types';
import { Pow } from './pow';
import { d3Ticks } from '../tick-methods/d3-ticks';
export class Sqrt extends Pow<SqrtOptions & PowOptions> {
protected getDefaultOptions() {
return {
domain: [0, 1],
range: [0, 1],
nice: false,
clamp: false,
round: false,
interpolate: createInterpolateValue,
tickMethod: d3Ticks,
tickCount: 5,
exponent: 0.5,
};
}
constructor(options?: SqrtOptions) {
super(options);
}
update(options?: SqrtOptions) {
super.update(options);
}
public clone(): Sqrt {
return new Sqrt(this.options);
}
}