UNPKG

igniteui-angular-charts

Version:

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

40 lines (39 loc) 1.48 kB
/** * Represents a calculation strategy that uses the calculation data source * to product a column of values. * * `DataSourceSupportingCalculation` class Represents a calculation strategy that uses the calculation data source to product a column of values. * * DataSourceSupportingCalculation SC = new DataSourceSupportingCalculation(); */ var IgxDataSourceSupportingCalculation = /** @class */ /*@__PURE__*/ (function () { function IgxDataSourceSupportingCalculation() { } Object.defineProperty(IgxDataSourceSupportingCalculation.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxDataSourceSupportingCalculation.prototype.onImplementationCreated = function () { }; IgxDataSourceSupportingCalculation.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; IgxDataSourceSupportingCalculation.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; return IgxDataSourceSupportingCalculation; }()); export { IgxDataSourceSupportingCalculation };