igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
77 lines (76 loc) • 2.93 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 SeriesViewerManipulationEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SeriesViewerManipulationEventArgs, _super);
function SeriesViewerManipulationEventArgs() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this._isZoomPan = false;
_this._isDragZoom = false;
_this._isDragSelect = false;
_this._dragSelectRectangle = null;
_this._isDragSelectCancelled = false;
return _this;
}
Object.defineProperty(SeriesViewerManipulationEventArgs.prototype, "isZoomPan", {
get: function () {
return this._isZoomPan;
},
set: function (a) {
this._isZoomPan = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesViewerManipulationEventArgs.prototype, "isDragZoom", {
get: function () {
return this._isDragZoom;
},
set: function (a) {
this._isDragZoom = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesViewerManipulationEventArgs.prototype, "isDragSelect", {
get: function () {
return this._isDragSelect;
},
set: function (a) {
this._isDragSelect = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesViewerManipulationEventArgs.prototype, "dragSelectRectangle", {
get: function () {
return this._dragSelectRectangle;
},
set: function (a) {
this._dragSelectRectangle = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesViewerManipulationEventArgs.prototype, "isDragSelectCancelled", {
get: function () {
return this._isDragSelectCancelled;
},
set: function (a) {
this._isDragSelectCancelled = a;
},
enumerable: false,
configurable: true
});
SeriesViewerManipulationEventArgs.$t = markType(SeriesViewerManipulationEventArgs, 'SeriesViewerManipulationEventArgs', EventArgs.$);
return SeriesViewerManipulationEventArgs;
}(EventArgs));
export { SeriesViewerManipulationEventArgs };