igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
76 lines (75 loc) • 2.74 kB
JavaScript
import { SeriesViewerManipulationEventArgs as SeriesViewerManipulationEventArgs_internal } from "./SeriesViewerManipulationEventArgs";
import { ensureBool } from "igniteui-react-core";
var IgrSeriesViewerManipulationEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrSeriesViewerManipulationEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrSeriesViewerManipulationEventArgs.prototype.createImplementation = function () {
return new SeriesViewerManipulationEventArgs_internal();
};
Object.defineProperty(IgrSeriesViewerManipulationEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrSeriesViewerManipulationEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrSeriesViewerManipulationEventArgs.prototype.onImplementationCreated = function () {
};
IgrSeriesViewerManipulationEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrSeriesViewerManipulationEventArgs.prototype, "isZoomPan", {
get: function () {
return this.i.isZoomPan;
},
set: function (v) {
this.i.isZoomPan = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrSeriesViewerManipulationEventArgs.prototype, "isDragZoom", {
get: function () {
return this.i.isDragZoom;
},
set: function (v) {
this.i.isDragZoom = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrSeriesViewerManipulationEventArgs.prototype, "isDragSelect", {
get: function () {
return this.i.isDragSelect;
},
set: function (v) {
this.i.isDragSelect = ensureBool(v);
},
enumerable: false,
configurable: true
});
return IgrSeriesViewerManipulationEventArgs;
}());
export { IgrSeriesViewerManipulationEventArgs };