igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 2.86 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 { TimeAxisBaseDescription } from "./TimeAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategoryDateTimeXAxisDescription = /*@__PURE__*/ (() => {
class CategoryDateTimeXAxisDescription extends TimeAxisBaseDescription {
constructor() {
super();
this.gi = false;
this.gu = null;
this.gm = 0;
this.gk = 0;
this.gn = 0;
this.gl = 0;
this.gs = null;
this.gt = null;
}
get_type() {
return "CategoryDateTimeXAxis";
}
get unevenlySpacedLabels() {
return this.gi;
}
set unevenlySpacedLabels(a) {
this.gi = a;
this.j("UnevenlySpacedLabels");
}
get displayType() {
return this.gu;
}
set displayType(a) {
this.gu = a;
this.j("DisplayType");
}
get interval() {
return this.gm;
}
set interval(a) {
this.gm = a;
this.j("Interval");
}
get actualInterval() {
return this.gk;
}
set actualInterval(a) {
this.gk = a;
this.j("ActualInterval");
}
get minorInterval() {
return this.gn;
}
set minorInterval(a) {
this.gn = a;
this.j("MinorInterval");
}
get actualMinorInterval() {
return this.gl;
}
set actualMinorInterval(a) {
this.gl = a;
this.j("ActualMinorInterval");
}
get actualIntervalChangeRef() {
return this.gs;
}
set actualIntervalChangeRef(a) {
this.gs = a;
this.j("ActualIntervalChangeRef");
}
get actualMinorIntervalChangeRef() {
return this.gt;
}
set actualMinorIntervalChangeRef(a) {
this.gt = a;
this.j("ActualMinorIntervalChangeRef");
}
}
CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$);
return CategoryDateTimeXAxisDescription;
})();