igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 2.01 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 RangeCategorySeriesDescription = /*@__PURE__*/ (() => {
class RangeCategorySeriesDescription extends CategorySeriesDescription {
constructor() {
super();
this.gh = null;
this.gg = null;
this.gf = null;
this.ge = null;
}
get_type() {
return "RangeCategorySeries";
}
get lowMemberPath() {
return this.gh;
}
set lowMemberPath(a) {
this.gh = a;
this.j("LowMemberPath");
}
get highMemberPath() {
return this.gg;
}
set highMemberPath(a) {
this.gg = a;
this.j("HighMemberPath");
}
get highlightedLowMemberPath() {
return this.gf;
}
set highlightedLowMemberPath(a) {
this.gf = a;
this.j("HighlightedLowMemberPath");
}
get highlightedHighMemberPath() {
return this.ge;
}
set highlightedHighMemberPath(a) {
this.ge = a;
this.j("HighlightedHighMemberPath");
}
}
RangeCategorySeriesDescription.$t = markType(RangeCategorySeriesDescription, 'RangeCategorySeriesDescription', CategorySeriesDescription.$);
return RangeCategorySeriesDescription;
})();