igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 1.79 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 {
get_type() {
return "TimeXAxis";
}
constructor() {
super();
this.er = null;
this.ex = null;
this.et = null;
this.es = null;
}
get breaks() {
return this.er;
}
set breaks(a) {
this.er = a;
this.g("Breaks");
}
get labellingMode() {
return this.ex;
}
set labellingMode(a) {
this.ex = a;
this.g("LabellingMode");
}
get labelFormats() {
return this.et;
}
set labelFormats(a) {
this.et = a;
this.g("LabelFormats");
}
get intervals() {
return this.es;
}
set intervals(a) {
this.es = a;
this.g("Intervals");
}
}
TimeXAxisDescription.$t = /*@__PURE__*/ markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
})();