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