UNPKG

igniteui-webcomponents-charts

Version:

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

18 lines (17 loc) 419 B
import { Rect } from "igniteui-webcomponents-core"; import { Type } from "igniteui-webcomponents-core"; /** * @hidden */ export interface IAngleScaler { getScaledAngle(a: number): number; getUnscaledAngle(a: number): number; getMinMaxAngle(a: Rect, b: Rect, c: Rect, d: number, e: number): { p3: number; p4: number; }; } /** * @hidden */ export declare let IAngleScaler_$type: Type;