ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
17 lines (16 loc) • 533 B
TypeScript
import { ContinuousScale } from "./continuousScale";
/**
* Maps continuous domain to a continuous range.
*/
export declare class LinearScale extends ContinuousScale {
readonly type = "linear";
ticks(count?: number): import("../util/ticks").NumericTicks;
/**
* Extends the domain so that it starts and ends on nice round values.
* @param count Tick count.
*/
nice(count?: number): void;
tickFormat(count?: number, specifier?: string): (n: number | {
valueOf(): number;
}) => string;
}