UNPKG

igniteui-webcomponents-charts

Version:

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

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