UNPKG

igniteui-react-charts

Version:

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

62 lines (61 loc) 1.89 kB
import { ensureBool } from "igniteui-react-core"; /** * Contains PieChart label click event data. */ var IgrLabelClickEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgrLabelClickEventArgs() { this.mounted = false; } Object.defineProperty(IgrLabelClickEventArgs.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrLabelClickEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrLabelClickEventArgs.prototype.onImplementationCreated = function () { }; IgrLabelClickEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgrLabelClickEventArgs.prototype, "item", { /** * Gets the slice data context. */ get: function () { return this.i.item; }, enumerable: false, configurable: true }); Object.defineProperty(IgrLabelClickEventArgs.prototype, "allowSliceClick", { /** * Gets and sets whether or not the owning pie chart should fire its SliceClick event */ get: function () { return this.i.allowSliceClick; }, set: function (v) { this.i.allowSliceClick = ensureBool(v); }, enumerable: false, configurable: true }); return IgrLabelClickEventArgs; }()); export { IgrLabelClickEventArgs };