igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
56 lines (55 loc) • 1.94 kB
JavaScript
import { DataLegendSeriesGroupInfo as DataLegendSeriesGroupInfo_internal } from "./DataLegendSeriesGroupInfo";
/**
* Represent info about series values
*/
var IgrDataLegendSeriesGroupInfo = /** @class */ /*@__PURE__*/ (function () {
function IgrDataLegendSeriesGroupInfo() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrDataLegendSeriesGroupInfo.prototype.createImplementation = function () {
return new DataLegendSeriesGroupInfo_internal();
};
Object.defineProperty(IgrDataLegendSeriesGroupInfo.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrDataLegendSeriesGroupInfo.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrDataLegendSeriesGroupInfo.prototype.onImplementationCreated = function () {
};
IgrDataLegendSeriesGroupInfo.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
IgrDataLegendSeriesGroupInfo.prototype.findByName = function (name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
};
return IgrDataLegendSeriesGroupInfo;
}());
export { IgrDataLegendSeriesGroupInfo };