UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

34 lines (33 loc) 768 B
import { fromPoint } from "igniteui-angular-core"; /** * EventArgs class holding information about the dimensions of a hole in a doughnut chart. */ export class IgxHoleDimensionsChangedEventArgs { constructor() { } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } /** * The center point of the hole. */ get center() { return fromPoint(this.i.center); } /** * The radius of the hole. */ get radius() { return this.i.radius; } }