UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

17 lines (16 loc) 486 B
import { NumericScaler } from "./NumericScaler"; import { Type } from "igniteui-webcomponents-core"; import { NumericAxisBase } from "./NumericAxisBase"; /** * @hidden */ export declare abstract class LogarithmicScaler extends NumericScaler { static $t: Type; ae: number; ad: number; protected w(a: string, b: any, c: any): void; t(a: NumericAxisBase, b: number, c: number, d: number, e: number): { p3: number; p4: number; }; }