UNPKG

igniteui-react-charts

Version:

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

28 lines (27 loc) 942 B
import { IgPoint } from "igniteui-react-core"; import { HoleDimensionsChangedEventArgs as HoleDimensionsChangedEventArgs_internal } from "./HoleDimensionsChangedEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * EventArgs class holding information about the dimensions of a hole in a doughnut chart. */ export declare class IgrHoleDimensionsChangedEventArgs { protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): HoleDimensionsChangedEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; /** * The center point of the hole. */ get center(): IgPoint; /** * The radius of the hole. */ get radius(): number; }