igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
42 lines (41 loc) • 837 B
JavaScript
/**
* Provides data for the SelectedItemChanged event.
*/
export class IgcSelectedItemChangedEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* 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;
}
}