UNPKG

igniteui-webcomponents-charts

Version:

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

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