igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.63 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.ej = null;
this.eb = 0;
this.d9 = 0;
this.ec = 0;
this.ea = 0;
this.eh = null;
this.ei = null;
}
get_type() {
return "CategoryDateTimeXAxis";
}
get displayType() {
return this.ej;
}
set displayType(a) {
this.ej = a;
this.e("DisplayType");
}
get interval() {
return this.eb;
}
set interval(a) {
this.eb = a;
this.e("Interval");
}
get actualInterval() {
return this.d9;
}
set actualInterval(a) {
this.d9 = a;
this.e("ActualInterval");
}
get minorInterval() {
return this.ec;
}
set minorInterval(a) {
this.ec = a;
this.e("MinorInterval");
}
get actualMinorInterval() {
return this.ea;
}
set actualMinorInterval(a) {
this.ea = a;
this.e("ActualMinorInterval");
}
get actualIntervalChangeRef() {
return this.eh;
}
set actualIntervalChangeRef(a) {
this.eh = a;
this.e("ActualIntervalChangeRef");
}
get actualMinorIntervalChangeRef() {
return this.ei;
}
set actualMinorIntervalChangeRef(a) {
this.ei = a;
this.e("ActualMinorIntervalChangeRef");
}
}
CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$);
return CategoryDateTimeXAxisDescription;
})();