UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 1.96 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 { AnchoredRadialSeriesDescription } from "./AnchoredRadialSeriesDescription"; import { markType } from "./type"; /** * @hidden */ var RadialColumnSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(RadialColumnSeriesDescription, _super); function RadialColumnSeriesDescription() { var _this = _super.call(this) || this; _this.hv = 0; _this.hw = 0; return _this; } RadialColumnSeriesDescription.prototype.get_type = function () { return "RadialColumnSeries"; }; Object.defineProperty(RadialColumnSeriesDescription.prototype, "radiusX", { get: function () { return this.hv; }, set: function (a) { this.hv = a; this.g("RadiusX"); }, enumerable: false, configurable: true }); Object.defineProperty(RadialColumnSeriesDescription.prototype, "radiusY", { get: function () { return this.hw; }, set: function (a) { this.hw = a; this.g("RadiusY"); }, enumerable: false, configurable: true }); RadialColumnSeriesDescription.$t = markType(RadialColumnSeriesDescription, 'RadialColumnSeriesDescription', AnchoredRadialSeriesDescription.$); return RadialColumnSeriesDescription; }(AnchoredRadialSeriesDescription)); export { RadialColumnSeriesDescription };