igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
66 lines (65 loc) • 2.22 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 { __extends, __read, __spreadArray } from "tslib";
import { EventArgs, markType } from "igniteui-react-core";
/**
* @hidden
*/
var FunnelSliceEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FunnelSliceEventArgs, _super);
function FunnelSliceEventArgs() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this.b = 0;
_this.h = null;
_this.d = null;
_this.f = null;
return _this;
}
Object.defineProperty(FunnelSliceEventArgs.prototype, "index", {
get: function () {
return this.b;
},
set: function (a) {
this.b = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FunnelSliceEventArgs.prototype, "bounds", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FunnelSliceEventArgs.prototype, "item", {
get: function () {
return this.d;
},
set: function (a) {
this.d = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FunnelSliceEventArgs.prototype, "position", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
},
enumerable: false,
configurable: true
});
FunnelSliceEventArgs.$t = markType(FunnelSliceEventArgs, 'FunnelSliceEventArgs', EventArgs.$);
return FunnelSliceEventArgs;
}(EventArgs));
export { FunnelSliceEventArgs };