UNPKG

igniteui-react-charts

Version:

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

41 lines (40 loc) 1.13 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(); */ export class IgrDataSourceSupportingCalculation { get nativeElement() { return this._implementation.nativeElement; } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } constructor() { this.mounted = false; } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } findByName(name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; } }