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.dp = null;
this.dm = 0;
this.de = 0;
this.df = 0;
this.dg = 0;
this.dh = 0;
this.dc = false;
this.dq = null;
}
get_type() {
return "CategoryAxisBase";
}
get dataSourceRef() {
return this.dp;
}
set dataSourceRef(a) {
this.dp = a;
this.e("DataSourceRef");
}
get itemsCount() {
return this.dm;
}
set itemsCount(a) {
this.dm = a;
this.e("ItemsCount");
}
get gap() {
return this.de;
}
set gap(a) {
this.de = a;
this.e("Gap");
}
get maximumGap() {
return this.df;
}
set maximumGap(a) {
this.df = a;
this.e("MaximumGap");
}
get minimumGapSize() {
return this.dg;
}
set minimumGapSize(a) {
this.dg = a;
this.e("MinimumGapSize");
}
get overlap() {
return this.dh;
}
set overlap(a) {
this.dh = a;
this.e("Overlap");
}
get useClusteringMode() {
return this.dc;
}
set useClusteringMode(a) {
this.dc = a;
this.e("UseClusteringMode");
}
get itemsCountChangeRef() {
return this.dq;
}
set itemsCountChangeRef(a) {
this.dq = a;
this.e("ItemsCountChangeRef");
}
}
CategoryAxisBaseDescription.$t = markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
})();