igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 2.66 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 {
constructor() {
super();
this.fy = null;
this.fw = 0;
this.fo = 0;
this.fp = 0;
this.fq = 0;
this.fr = 0;
this.fm = false;
this.fz = null;
}
get_type() {
return "CategoryAxisBase";
}
get dataSourceRef() {
return this.fy;
}
set dataSourceRef(a) {
this.fy = a;
this.j("DataSourceRef");
}
get itemsCount() {
return this.fw;
}
set itemsCount(a) {
this.fw = a;
this.j("ItemsCount");
}
get gap() {
return this.fo;
}
set gap(a) {
this.fo = a;
this.j("Gap");
}
get maximumGap() {
return this.fp;
}
set maximumGap(a) {
this.fp = a;
this.j("MaximumGap");
}
get minimumGapSize() {
return this.fq;
}
set minimumGapSize(a) {
this.fq = a;
this.j("MinimumGapSize");
}
get overlap() {
return this.fr;
}
set overlap(a) {
this.fr = a;
this.j("Overlap");
}
get useClusteringMode() {
return this.fm;
}
set useClusteringMode(a) {
this.fm = a;
this.j("UseClusteringMode");
}
get itemsCountChangeRef() {
return this.fz;
}
set itemsCountChangeRef(a) {
this.fz = a;
this.j("ItemsCountChangeRef");
}
}
CategoryAxisBaseDescription.$t = markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
})();