UNPKG

igniteui-webcomponents-charts

Version:

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

50 lines (49 loc) 2.01 kB
import { SeriesLayerPropertyOverlayValueResolvingEventArgs as SeriesLayerPropertyOverlayValueResolvingEventArgs_internal } from "./SeriesLayerPropertyOverlayValueResolvingEventArgs"; /** * Provides data for Axis RangeChanged events. */ var IgcSeriesLayerPropertyOverlayValueResolvingEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgcSeriesLayerPropertyOverlayValueResolvingEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcSeriesLayerPropertyOverlayValueResolvingEventArgs.prototype.createImplementation = function () { return new SeriesLayerPropertyOverlayValueResolvingEventArgs_internal(); }; Object.defineProperty(IgcSeriesLayerPropertyOverlayValueResolvingEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcSeriesLayerPropertyOverlayValueResolvingEventArgs.prototype.onImplementationCreated = function () { }; IgcSeriesLayerPropertyOverlayValueResolvingEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcSeriesLayerPropertyOverlayValueResolvingEventArgs.prototype, "value", { get: function () { return this.i.value; }, set: function (v) { this.i.value = v; }, enumerable: false, configurable: true }); return IgcSeriesLayerPropertyOverlayValueResolvingEventArgs; }()); export { IgcSeriesLayerPropertyOverlayValueResolvingEventArgs };