UNPKG

igniteui-angular-charts

Version:

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

34 lines (33 loc) 956 B
/** * 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(); */ export class IgxDataSourceSupportingCalculation { constructor() { } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } findByName(name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; } }