UNPKG

igniteui-react-core

Version:
74 lines (73 loc) 2.64 kB
/* 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.f9 = null; _this.gb = false; _this.gc = false; _this.gf = null; return _this; } StackedSeriesBaseDescription.prototype.get_type = function () { return "StackedSeriesBase"; }; Object.defineProperty(StackedSeriesBaseDescription.prototype, "series", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.g("Series"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "autoGenerateSeries", { get: function () { return this.gb; }, set: function (a) { this.gb = a; this.g("AutoGenerateSeries"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "reverseLegendOrder", { get: function () { return this.gc; }, set: function (a) { this.gc = a; this.g("ReverseLegendOrder"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "seriesCreatedRef", { get: function () { return this.gf; }, set: function (a) { this.gf = a; this.g("SeriesCreatedRef"); }, enumerable: false, configurable: true }); StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$); return StackedSeriesBaseDescription; }(CategorySeriesDescription)); export { StackedSeriesBaseDescription };