igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
18 lines (17 loc) • 387 B
TypeScript
import { Point, Type } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export interface IPolarRadialRenderingParameters {
minLength: number;
maxLength: number;
center: Point;
minAngle: number;
maxAngle: number;
crossingAngleRadians: number;
effectiveMaximum: number;
}
/**
* @hidden
*/
export declare let IPolarRadialRenderingParameters_$type: Type;