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