igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.38 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let TimeAxisLabelFormatDescription = /*@__PURE__*/ (() => {
class TimeAxisLabelFormatDescription extends Description {
constructor() {
super();
this.k = 0;
this.m = null;
this.q = null;
this.p = null;
this.o = null;
this.n = null;
}
get_type() {
return "TimeAxisLabelFormat";
}
get type() {
return this.get_type();
}
get range() {
return this.k;
}
set range(a) {
this.k = a;
this.j("Range");
}
get format() {
return this.m;
}
set format(a) {
this.m = a;
this.j("Format");
}
get repeatedYearFormat() {
return this.q;
}
set repeatedYearFormat(a) {
this.q = a;
this.j("RepeatedYearFormat");
}
get repeatedMonthFormat() {
return this.p;
}
set repeatedMonthFormat(a) {
this.p = a;
this.j("RepeatedMonthFormat");
}
get repeatedDayFormat() {
return this.o;
}
set repeatedDayFormat(a) {
this.o = a;
this.j("RepeatedDayFormat");
}
get labelFormatOverrideRef() {
return this.n;
}
set labelFormatOverrideRef(a) {
this.n = a;
this.j("LabelFormatOverrideRef");
}
}
TimeAxisLabelFormatDescription.$t = markType(TimeAxisLabelFormatDescription, 'TimeAxisLabelFormatDescription', Description.$);
return TimeAxisLabelFormatDescription;
})();