igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 942 B
JavaScript
import { LegendTextContentChangedEventArgs as LegendTextContentChangedEventArgs_internal } from "./LegendTextContentChangedEventArgs";
/**
* Provides data for legend's text content changed event.
*/
export class IgxLegendTextContentChangedEventArgs {
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
createImplementation() {
return new LegendTextContentChangedEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
}