UNPKG

igniteui-react-charts

Version:

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

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