UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.72 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.d3 = null; _this.d5 = false; _this.d6 = false; _this.d9 = null; return _this; } StackedSeriesBaseDescription.prototype.get_type = function () { return "StackedSeriesBase"; }; Object.defineProperty(StackedSeriesBaseDescription.prototype, "series", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.e("Series"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "autoGenerateSeries", { get: function () { return this.d5; }, set: function (a) { this.d5 = a; this.e("AutoGenerateSeries"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "reverseLegendOrder", { get: function () { return this.d6; }, set: function (a) { this.d6 = a; this.e("ReverseLegendOrder"); }, enumerable: false, configurable: true }); Object.defineProperty(StackedSeriesBaseDescription.prototype, "seriesCreatedRef", { get: function () { return this.d9; }, set: function (a) { this.d9 = a; this.e("SeriesCreatedRef"); }, enumerable: false, configurable: true }); StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$); return StackedSeriesBaseDescription; }(CategorySeriesDescription)); export { StackedSeriesBaseDescription };