igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.11 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.gm = null;
_this.gn = null;
return _this;
}
HorizontalStackedSeriesBaseDescription.prototype.get_type = function () {
return "HorizontalStackedSeriesBase";
};
Object.defineProperty(HorizontalStackedSeriesBaseDescription.prototype, "xAxisRef", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HorizontalStackedSeriesBaseDescription.prototype, "yAxisRef", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.j("YAxisRef");
},
enumerable: false,
configurable: true
});
HorizontalStackedSeriesBaseDescription.$t = markType(HorizontalStackedSeriesBaseDescription, 'HorizontalStackedSeriesBaseDescription', StackedSeriesBaseDescription.$);
return HorizontalStackedSeriesBaseDescription;
}(StackedSeriesBaseDescription));
export { HorizontalStackedSeriesBaseDescription };