UNPKG

igniteui-webcomponents-charts

Version:

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

24 lines (23 loc) 741 B
import { IgPoint } from "igniteui-webcomponents-core"; import { HoleDimensionsChangedEventArgs as HoleDimensionsChangedEventArgs_internal } from "./HoleDimensionsChangedEventArgs"; /** * EventArgs class holding information about the dimensions of a hole in a doughnut chart. */ export declare class IgcHoleDimensionsChangedEventArgs { protected _implementation: any; /** * @hidden */ get i(): HoleDimensionsChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The center point of the hole. */ get center(): IgPoint; /** * The radius of the hole. */ get radius(): number; }