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