igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
43 lines (42 loc) • 1.53 kB
JavaScript
/**
* 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 IgcDataSourceSupportingCalculation = /** @class */ /*@__PURE__*/ (function () {
function IgcDataSourceSupportingCalculation() {
}
Object.defineProperty(IgcDataSourceSupportingCalculation.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcDataSourceSupportingCalculation.prototype.onImplementationCreated = function () {
};
IgcDataSourceSupportingCalculation.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
IgcDataSourceSupportingCalculation.prototype.findByName = function (name) {
if (this.findEphemera) {
if (name && name.indexOf("@@e:") == 0) {
return this.findEphemera(name);
}
}
return null;
};
return IgcDataSourceSupportingCalculation;
}());
export { IgcDataSourceSupportingCalculation };