UNPKG

igniteui-webcomponents-charts

Version:

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

54 lines (53 loc) 1.81 kB
/** * Class containing several properties which are used as parameters passed to scaling operations in a SeriesViewer. * * Class containing several properties which are used as parameters passed to scaling operations in a `SeriesViewer`. */ var IgcScalerParams = /** @class */ /*@__PURE__*/ (function () { function IgcScalerParams() { } Object.defineProperty(IgcScalerParams.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcScalerParams.prototype.onImplementationCreated = function () { }; IgcScalerParams.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcScalerParams.prototype, "referenceValue", { /** * The series reference value. * Typically, the reference value is the initial value of the series. The reference value is used by the PercentChangeYAxis, where all values in the series are scaled relative to the initial value. */ get: function () { return this.i.b; }, set: function (v) { this.i.b = +v; }, enumerable: false, configurable: true }); IgcScalerParams.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; return IgcScalerParams; }()); export { IgcScalerParams };