UNPKG

igniteui-angular-charts

Version:

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

45 lines (44 loc) 1.63 kB
import { DataLegendSeriesGroupInfo as DataLegendSeriesGroupInfo_internal } from "./DataLegendSeriesGroupInfo"; /** * Represent info about series values */ var IgxDataLegendSeriesGroupInfo = /** @class */ /*@__PURE__*/ (function () { function IgxDataLegendSeriesGroupInfo() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgxDataLegendSeriesGroupInfo.prototype.createImplementation = function () { return new DataLegendSeriesGroupInfo_internal(); }; Object.defineProperty(IgxDataLegendSeriesGroupInfo.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxDataLegendSeriesGroupInfo.prototype.onImplementationCreated = function () { }; IgxDataLegendSeriesGroupInfo.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; IgxDataLegendSeriesGroupInfo.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; return IgxDataLegendSeriesGroupInfo; }()); export { IgxDataLegendSeriesGroupInfo };