igniteui-react-core
Version:
Ignite UI React Core.
88 lines (87 loc) • 2.59 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.d7 = null;
this.d5 = 0;
this.dx = 0;
this.dy = 0;
this.dz = 0;
this.d0 = 0;
this.dv = false;
this.d8 = null;
}
get dataSourceRef() {
return this.d7;
}
set dataSourceRef(a) {
this.d7 = a;
this.g("DataSourceRef");
}
get itemsCount() {
return this.d5;
}
set itemsCount(a) {
this.d5 = a;
this.g("ItemsCount");
}
get gap() {
return this.dx;
}
set gap(a) {
this.dx = a;
this.g("Gap");
}
get maximumGap() {
return this.dy;
}
set maximumGap(a) {
this.dy = a;
this.g("MaximumGap");
}
get minimumGapSize() {
return this.dz;
}
set minimumGapSize(a) {
this.dz = a;
this.g("MinimumGapSize");
}
get overlap() {
return this.d0;
}
set overlap(a) {
this.d0 = a;
this.g("Overlap");
}
get useClusteringMode() {
return this.dv;
}
set useClusteringMode(a) {
this.dv = a;
this.g("UseClusteringMode");
}
get itemsCountChangeRef() {
return this.d8;
}
set itemsCountChangeRef(a) {
this.d8 = a;
this.g("ItemsCountChangeRef");
}
}
CategoryAxisBaseDescription.$t = /*@__PURE__*/ markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
})();