igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.56 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let DataChartMouseButtonEventArgsDescription = /*@__PURE__*/ (() => {
class DataChartMouseButtonEventArgsDescription extends Description {
constructor() {
super();
this.t = false;
this.s = false;
this.w = null;
this.o = null;
this.k = null;
this.l = null;
this.q = null;
}
get_type() {
return "DataChartMouseButtonEventArgs";
}
get type() {
return this.get_type();
}
get handled() {
return this.t;
}
set handled(a) {
this.t = a;
this.j("Handled");
}
get cancelSelection() {
return this.s;
}
set cancelSelection(a) {
this.s = a;
this.j("CancelSelection");
}
get itemRef() {
return this.w;
}
set itemRef(a) {
this.w = a;
this.j("ItemRef");
}
get series() {
return this.o;
}
set series(a) {
this.o = a;
this.j("Series");
}
get plotAreaPosition() {
return this.k;
}
set plotAreaPosition(a) {
this.k = a;
this.j("PlotAreaPosition");
}
get worldPosition() {
return this.l;
}
set worldPosition(a) {
this.l = a;
this.j("WorldPosition");
}
get chart() {
return this.q;
}
set chart(a) {
this.q = a;
this.j("Chart");
}
}
DataChartMouseButtonEventArgsDescription.$t = markType(DataChartMouseButtonEventArgsDescription, 'DataChartMouseButtonEventArgsDescription', Description.$);
return DataChartMouseButtonEventArgsDescription;
})();