igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.64 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.gg = null;
_this.gi = false;
_this.gj = false;
_this.gm = null;
return _this;
}
StackedSeriesBaseDescription.prototype.get_type = function () {
return "StackedSeriesBase";
};
Object.defineProperty(StackedSeriesBaseDescription.prototype, "series", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.j("Series");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "autoGenerateSeries", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.j("AutoGenerateSeries");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "reverseLegendOrder", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.j("ReverseLegendOrder");
},
enumerable: false,
configurable: true
});
Object.defineProperty(StackedSeriesBaseDescription.prototype, "seriesCreatedRef", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("SeriesCreatedRef");
},
enumerable: false,
configurable: true
});
StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
}(CategorySeriesDescription));
export { StackedSeriesBaseDescription };