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.d3 = null;
this.d5 = false;
this.d6 = false;
this.d9 = null;
}
get_type() {
return "StackedSeriesBase";
}
get series() {
return this.d3;
}
set series(a) {
this.d3 = a;
this.e("Series");
}
get autoGenerateSeries() {
return this.d5;
}
set autoGenerateSeries(a) {
this.d5 = a;
this.e("AutoGenerateSeries");
}
get reverseLegendOrder() {
return this.d6;
}
set reverseLegendOrder(a) {
this.d6 = a;
this.e("ReverseLegendOrder");
}
get seriesCreatedRef() {
return this.d9;
}
set seriesCreatedRef(a) {
this.d9 = a;
this.e("SeriesCreatedRef");
}
}
StackedSeriesBaseDescription.$t = markType(StackedSeriesBaseDescription, 'StackedSeriesBaseDescription', CategorySeriesDescription.$);
return StackedSeriesBaseDescription;
})();