igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
39 lines (38 loc) • 785 B
JavaScript
/**
* Provides data for the SelectedItemChanged event.
*/
export class IgxSelectedItemChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* The previously selected item.
*/
get oldItem() {
return this.i.oldItem;
}
set oldItem(v) {
this.i.oldItem = v;
}
/**
* The newly selected item.
*/
get newItem() {
return this.i.newItem;
}
set newItem(v) {
this.i.newItem = v;
}
}