UNPKG

igniteui-angular-charts

Version:

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

37 lines (36 loc) 859 B
import { ensureBool } from "igniteui-angular-core"; /** * Contains PieChart label click event data. */ export class IgxLabelClickEventArgs { constructor() { } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } /** * Gets the slice data context. */ get item() { return this.i.item; } /** * Gets and sets whether or not the owning pie chart should fire its SliceClick event */ get allowSliceClick() { return this.i.allowSliceClick; } set allowSliceClick(v) { this.i.allowSliceClick = ensureBool(v); } }