UNPKG

igniteui-webcomponents-charts

Version:

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

51 lines (50 loc) 1.73 kB
import { PieSliceOthersContext as PieSliceOthersContext_internal } from "./PieSliceOthersContext"; /** * Represents the selected data contained inside the Others slice. */ var IgcPieSliceOthersContext = /** @class */ /*@__PURE__*/ (function () { function IgcPieSliceOthersContext() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcPieSliceOthersContext.prototype.createImplementation = function () { return new PieSliceOthersContext_internal(); }; Object.defineProperty(IgcPieSliceOthersContext.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcPieSliceOthersContext.prototype.onImplementationCreated = function () { }; IgcPieSliceOthersContext.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; /** * The underlying data contained by the Others pie slice. */ IgcPieSliceOthersContext.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; return IgcPieSliceOthersContext; }()); export { IgcPieSliceOthersContext };