igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.95 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 { CategorySeriesDescription } from "./CategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let StackedSeriesBaseDescription = /*@__PURE__*/ (() => {
class StackedSeriesBaseDescription extends CategorySeriesDescription {
constructor() {
super();
this.ge = null;
this.gg = false;
this.gh = false;
this.gk = null;
}
get_type() {
return "StackedSeriesBase";
}
get series() {
return this.ge;
}
set series(a) {
this.ge = a;
this.j("Series");
}
get autoGenerateSeries() {
return this.gg;
}
set autoGenerateSeries(a) {
this.gg = a;
this.j("AutoGenerateSeries");
}
get reverseLegendOrder() {
return this.gh;
}
set reverseLegendOrder(a) {
this.gh = a;
this.j("ReverseLegendOrder");
}
get seriesCreatedRef() {
return this.gk;
}
set seriesCreatedRef(a) {
this.gk = a;
this.j("SeriesCreatedRef");
}
}
StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
})();