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.d9 = null;
this.ef = null;
this.eb = null;
this.ea = null;
}
get_type() {
return "TimeXAxis";
}
get breaks() {
return this.d9;
}
set breaks(a) {
this.d9 = a;
this.e("Breaks");
}
get labellingMode() {
return this.ef;
}
set labellingMode(a) {
this.ef = a;
this.e("LabellingMode");
}
get labelFormats() {
return this.eb;
}
set labelFormats(a) {
this.eb = a;
this.e("LabelFormats");
}
get intervals() {
return this.ea;
}
set intervals(a) {
this.ea = a;
this.e("Intervals");
}
}
TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
})();