igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
37 lines (36 loc) • 1.48 kB
JavaScript
import { LegendTextContentChangedEventArgs as LegendTextContentChangedEventArgs_internal } from "./LegendTextContentChangedEventArgs";
/**
* Provides data for legend's text content changed event.
*/
var IgxLegendTextContentChangedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxLegendTextContentChangedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxLegendTextContentChangedEventArgs.prototype.createImplementation = function () {
return new LegendTextContentChangedEventArgs_internal();
};
Object.defineProperty(IgxLegendTextContentChangedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxLegendTextContentChangedEventArgs.prototype.onImplementationCreated = function () {
};
IgxLegendTextContentChangedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxLegendTextContentChangedEventArgs;
}());
export { IgxLegendTextContentChangedEventArgs };