igniteui-react-core
Version:
Ignite UI React Core.
96 lines (95 loc) • 2.81 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 { AxisDescription } from "./AxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategoryAxisBaseDescription = /*@__PURE__*/ (() => {
class CategoryAxisBaseDescription extends AxisDescription {
get_type() {
return "CategoryAxisBase";
}
constructor() {
super();
this.f0 = null;
this.fy = 0;
this.fq = 0;
this.fr = 0;
this.fs = 0;
this.ft = 0;
this.fn = false;
this.fm = false;
this.f1 = null;
}
get dataSourceRef() {
return this.f0;
}
set dataSourceRef(a) {
this.f0 = a;
this.j("DataSourceRef");
}
get itemsCount() {
return this.fy;
}
set itemsCount(a) {
this.fy = a;
this.j("ItemsCount");
}
get gap() {
return this.fq;
}
set gap(a) {
this.fq = a;
this.j("Gap");
}
get maximumGap() {
return this.fr;
}
set maximumGap(a) {
this.fr = a;
this.j("MaximumGap");
}
get minimumGapSize() {
return this.fs;
}
set minimumGapSize(a) {
this.fs = a;
this.j("MinimumGapSize");
}
get overlap() {
return this.ft;
}
set overlap(a) {
this.ft = a;
this.j("Overlap");
}
get useClusteringMode() {
return this.fn;
}
set useClusteringMode(a) {
this.fn = a;
this.j("UseClusteringMode");
}
get isLastLabelMandatory() {
return this.fm;
}
set isLastLabelMandatory(a) {
this.fm = a;
this.j("IsLastLabelMandatory");
}
get itemsCountChangeRef() {
return this.f1;
}
set itemsCountChangeRef(a) {
this.f1 = a;
this.j("ItemsCountChangeRef");
}
}
CategoryAxisBaseDescription.$t = /*@__PURE__*/ markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
})();