igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 2.09 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 VerticalStackedSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(VerticalStackedSeriesBaseDescription, _super);
function VerticalStackedSeriesBaseDescription() {
var _this = _super.call(this) || this;
_this.gh = null;
_this.gi = null;
return _this;
}
VerticalStackedSeriesBaseDescription.prototype.get_type = function () {
return "VerticalStackedSeriesBase";
};
Object.defineProperty(VerticalStackedSeriesBaseDescription.prototype, "xAxisRef", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.g("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(VerticalStackedSeriesBaseDescription.prototype, "yAxisRef", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.g("YAxisRef");
},
enumerable: false,
configurable: true
});
VerticalStackedSeriesBaseDescription.$t = markType(VerticalStackedSeriesBaseDescription, 'VerticalStackedSeriesBaseDescription', StackedSeriesBaseDescription.$);
return VerticalStackedSeriesBaseDescription;
}(StackedSeriesBaseDescription));
export { VerticalStackedSeriesBaseDescription };