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