igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
65 lines (64 loc) • 2.44 kB
JavaScript
import { SeriesViewerManipulationEventArgs as SeriesViewerManipulationEventArgs_internal } from "./SeriesViewerManipulationEventArgs";
import { ensureBool } from "igniteui-angular-core";
var IgxSeriesViewerManipulationEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxSeriesViewerManipulationEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxSeriesViewerManipulationEventArgs.prototype.createImplementation = function () {
return new SeriesViewerManipulationEventArgs_internal();
};
Object.defineProperty(IgxSeriesViewerManipulationEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxSeriesViewerManipulationEventArgs.prototype.onImplementationCreated = function () {
};
IgxSeriesViewerManipulationEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxSeriesViewerManipulationEventArgs.prototype, "isZoomPan", {
get: function () {
return this.i.isZoomPan;
},
set: function (v) {
this.i.isZoomPan = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSeriesViewerManipulationEventArgs.prototype, "isDragZoom", {
get: function () {
return this.i.isDragZoom;
},
set: function (v) {
this.i.isDragZoom = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSeriesViewerManipulationEventArgs.prototype, "isDragSelect", {
get: function () {
return this.i.isDragSelect;
},
set: function (v) {
this.i.isDragSelect = ensureBool(v);
},
enumerable: false,
configurable: true
});
return IgxSeriesViewerManipulationEventArgs;
}());
export { IgxSeriesViewerManipulationEventArgs };