UNPKG

igniteui-react-charts

Version:

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

48 lines (47 loc) 1.71 kB
import { LegendSizeChangedEventArgs as LegendSizeChangedEventArgs_internal } from "./LegendSizeChangedEventArgs"; /** * Provides data for legend's size changed event. */ var IgrLegendSizeChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgrLegendSizeChangedEventArgs() { this.mounted = false; this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgrLegendSizeChangedEventArgs.prototype.createImplementation = function () { return new LegendSizeChangedEventArgs_internal(); }; Object.defineProperty(IgrLegendSizeChangedEventArgs.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrLegendSizeChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrLegendSizeChangedEventArgs.prototype.onImplementationCreated = function () { }; IgrLegendSizeChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; return IgrLegendSizeChangedEventArgs; }()); export { IgrLegendSizeChangedEventArgs };