igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
37 lines (36 loc) • 831 B
JavaScript
import { fromPoint } from "igniteui-webcomponents-core";
/**
* EventArgs class holding information about the dimensions of a hole in a doughnut chart.
*/
export class IgcHoleDimensionsChangedEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* The center point of the hole.
*/
get center() {
return fromPoint(this.i.center);
}
/**
* The radius of the hole.
*/
get radius() {
return this.i.radius;
}
}