UNPKG

igniteui-webcomponents-charts

Version:

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

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