igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 2.06 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 { StackedSeriesBaseDescription } from "./StackedSeriesBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var HorizontalStackedSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(HorizontalStackedSeriesBaseDescription, _super);
function HorizontalStackedSeriesBaseDescription() {
var _this = _super.call(this) || this;
_this.gh = null;
_this.gi = null;
return _this;
}
HorizontalStackedSeriesBaseDescription.prototype.get_type = function () {
return "HorizontalStackedSeriesBase";
};
Object.defineProperty(HorizontalStackedSeriesBaseDescription.prototype, "xAxisRef", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.g("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalStackedSeriesBaseDescription.prototype, "yAxisRef", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.g("YAxisRef");
},
enumerable: false,
configurable: true
});
HorizontalStackedSeriesBaseDescription.$t = markType(HorizontalStackedSeriesBaseDescription, 'HorizontalStackedSeriesBaseDescription', StackedSeriesBaseDescription.$);
return HorizontalStackedSeriesBaseDescription;
}(StackedSeriesBaseDescription));
export { HorizontalStackedSeriesBaseDescription };