UNPKG

igniteui-webcomponents-charts

Version:

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

62 lines (61 loc) 2.15 kB
import { DomainChartTestingInfo as DomainChartTestingInfo_internal } from "./DomainChartTestingInfo"; var IgcDomainChartTestingInfo = /** @class */ /*@__PURE__*/ (function () { function IgcDomainChartTestingInfo() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcDomainChartTestingInfo.prototype.createImplementation = function () { return new DomainChartTestingInfo_internal(); }; Object.defineProperty(IgcDomainChartTestingInfo.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcDomainChartTestingInfo.prototype.onImplementationCreated = function () { }; IgcDomainChartTestingInfo.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcDomainChartTestingInfo.prototype, "mainDataChart", { get: function () { var r = this.i.a; if (r == null) { return null; } return r.externalObject; }, set: function (v) { v == null ? this.i.a = null : this.i.a = v.i; }, enumerable: false, configurable: true }); IgcDomainChartTestingInfo.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } if (this.mainDataChart && this.mainDataChart.name && this.mainDataChart.name == name) { return this.mainDataChart; } return null; }; return IgcDomainChartTestingInfo; }()); export { IgcDomainChartTestingInfo };