UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

78 lines 2.23 kB
var NavigatorHandle = /** @class */ (function () { function NavigatorHandle(rangeHandle) { this.rh = rangeHandle; } Object.defineProperty(NavigatorHandle.prototype, "fill", { get: function () { return this.rh.fill; }, set: function (value) { this.rh.fill = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "stroke", { get: function () { return this.rh.stroke; }, set: function (value) { this.rh.stroke = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "strokeWidth", { get: function () { return this.rh.strokeWidth; }, set: function (value) { this.rh.strokeWidth = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "width", { get: function () { return this.rh.width; }, set: function (value) { this.rh.width = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "height", { get: function () { return this.rh.height; }, set: function (value) { this.rh.height = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "gripLineGap", { get: function () { return this.rh.gripLineGap; }, set: function (value) { this.rh.gripLineGap = value; }, enumerable: true, configurable: true }); Object.defineProperty(NavigatorHandle.prototype, "gripLineLength", { get: function () { return this.rh.gripLineLength; }, set: function (value) { this.rh.gripLineLength = value; }, enumerable: true, configurable: true }); return NavigatorHandle; }()); export { NavigatorHandle }; //# sourceMappingURL=navigatorHandle.js.map