igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 1.98 kB
JavaScript
/*
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 { HorizontalRangeCategorySeriesDescription } from "./HorizontalRangeCategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var RangeColumnSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RangeColumnSeriesDescription, _super);
function RangeColumnSeriesDescription() {
var _this = _super.call(this) || this;
_this.gt = 0;
_this.gu = 0;
return _this;
}
RangeColumnSeriesDescription.prototype.get_type = function () {
return "RangeColumnSeries";
};
Object.defineProperty(RangeColumnSeriesDescription.prototype, "radiusX", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.g("RadiusX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RangeColumnSeriesDescription.prototype, "radiusY", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.g("RadiusY");
},
enumerable: false,
configurable: true
});
RangeColumnSeriesDescription.$t = markType(RangeColumnSeriesDescription, 'RangeColumnSeriesDescription', HorizontalRangeCategorySeriesDescription.$);
return RangeColumnSeriesDescription;
}(HorizontalRangeCategorySeriesDescription));
export { RangeColumnSeriesDescription };