igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 1.91 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 {
get_type() {
return "StackedSeriesBase";
}
constructor() {
super();
this.gg = null;
this.gi = false;
this.gj = false;
this.gm = null;
}
get series() {
return this.gg;
}
set series(a) {
this.gg = a;
this.j("Series");
}
get autoGenerateSeries() {
return this.gi;
}
set autoGenerateSeries(a) {
this.gi = a;
this.j("AutoGenerateSeries");
}
get reverseLegendOrder() {
return this.gj;
}
set reverseLegendOrder(a) {
this.gj = a;
this.j("ReverseLegendOrder");
}
get seriesCreatedRef() {
return this.gm;
}
set seriesCreatedRef(a) {
this.gm = a;
this.j("SeriesCreatedRef");
}
}
StackedSeriesBaseDescription.$t = /*@__PURE__*/ markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
})();