igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.72 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 { CategorySeriesDescription } from "./CategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var StackedSeriesBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(StackedSeriesBaseDescription, _super);
function StackedSeriesBaseDescription() {
var _this = _super.call(this) || this;
_this.ge = null;
_this.gg = false;
_this.gh = false;
_this.gk = null;
return _this;
}
StackedSeriesBaseDescription.prototype.get_type = function () {
return "StackedSeriesBase";
};
Object.defineProperty(StackedSeriesBaseDescription.prototype, "series", {
get: function () {
return this.ge;
},
set: function (a) {
this.ge = a;
this.j("Series");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "autoGenerateSeries", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("AutoGenerateSeries");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "reverseLegendOrder", {
get: function () {
return this.gh;
},
set: function (a) {
this.gh = a;
this.j("ReverseLegendOrder");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "seriesCreatedRef", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.j("SeriesCreatedRef");
},
enumerable: false,
configurable: true
});
StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
}(CategorySeriesDescription));
export { StackedSeriesBaseDescription };