UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.95 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 { CategorySeriesDescription } from "./CategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let StackedSeriesBaseDescription = /*@__PURE__*/ (() => { class StackedSeriesBaseDescription extends CategorySeriesDescription { constructor() { super(); this.f9 = null; this.gb = false; this.gc = false; this.gf = null; } get_type() { return "StackedSeriesBase"; } get series() { return this.f9; } set series(a) { this.f9 = a; this.g("Series"); } get autoGenerateSeries() { return this.gb; } set autoGenerateSeries(a) { this.gb = a; this.g("AutoGenerateSeries"); } get reverseLegendOrder() { return this.gc; } set reverseLegendOrder(a) { this.gc = a; this.g("ReverseLegendOrder"); } get seriesCreatedRef() { return this.gf; } set seriesCreatedRef(a) { this.gf = a; this.g("SeriesCreatedRef"); } } StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$); return StackedSeriesBaseDescription; })();