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.f9 = null;
this.gb = false;
this.gc = false;
this.gf = null;
}
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 = /*@__PURE__*/ markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
})();