igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.83 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 TimeXAxisDescription = /*@__PURE__*/ (() => {
class TimeXAxisDescription extends TimeAxisBaseDescription {
constructor() {
super();
this.gi = null;
this.go = null;
this.gk = null;
this.gj = null;
}
get_type() {
return "TimeXAxis";
}
get breaks() {
return this.gi;
}
set breaks(a) {
this.gi = a;
this.j("Breaks");
}
get labellingMode() {
return this.go;
}
set labellingMode(a) {
this.go = a;
this.j("LabellingMode");
}
get labelFormats() {
return this.gk;
}
set labelFormats(a) {
this.gk = a;
this.j("LabelFormats");
}
get intervals() {
return this.gj;
}
set intervals(a) {
this.gj = a;
this.j("Intervals");
}
}
TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
})();