igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.05 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 { HorizontalStackedSeriesBaseDescription } from "./HorizontalStackedSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var StackedColumnSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(StackedColumnSeriesDescription, _super);
function StackedColumnSeriesDescription() {
var _this = _super.call(this) || this;
_this.gq = 0;
_this.gr = 0;
return _this;
}
StackedColumnSeriesDescription.prototype.get_type = function () {
return "StackedColumnSeries";
};
Object.defineProperty(StackedColumnSeriesDescription.prototype, "radiusX", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("RadiusX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedColumnSeriesDescription.prototype, "radiusY", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("RadiusY");
},
enumerable: false,
configurable: true
});
StackedColumnSeriesDescription.$t = markType(StackedColumnSeriesDescription, 'StackedColumnSeriesDescription', HorizontalStackedSeriesBaseDescription.$);
return StackedColumnSeriesDescription;
}(HorizontalStackedSeriesBaseDescription));
export { StackedColumnSeriesDescription };