UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 1.94 kB
/* 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 } from "tslib"; import { VerticalRangeCategorySeriesDescription } from "./VerticalRangeCategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ var RangeBarSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(RangeBarSeriesDescription, _super); function RangeBarSeriesDescription() { var _this = _super.call(this) || this; _this.g0 = 0; _this.g1 = 0; return _this; } RangeBarSeriesDescription.prototype.get_type = function () { return "RangeBarSeries"; }; Object.defineProperty(RangeBarSeriesDescription.prototype, "radiusX", { get: function () { return this.g0; }, set: function (a) { this.g0 = a; this.j("RadiusX"); }, enumerable: false, configurable: true }); Object.defineProperty(RangeBarSeriesDescription.prototype, "radiusY", { get: function () { return this.g1; }, set: function (a) { this.g1 = a; this.j("RadiusY"); }, enumerable: false, configurable: true }); RangeBarSeriesDescription.$t = markType(RangeBarSeriesDescription, 'RangeBarSeriesDescription', VerticalRangeCategorySeriesDescription.$); return RangeBarSeriesDescription; }(VerticalRangeCategorySeriesDescription)); export { RangeBarSeriesDescription };