igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.09 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 { CategoryXAxisDescription } from "./CategoryXAxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let OrdinalTimeXAxisDescription = /*@__PURE__*/ (() => {
class OrdinalTimeXAxisDescription extends CategoryXAxisDescription {
get_type() {
return "OrdinalTimeXAxis";
}
constructor() {
super();
this.e3 = null;
this.e4 = null;
this.ex = null;
this.e0 = new Date();
this.ez = new Date();
}
get dateTimeMemberPath() {
return this.e3;
}
set dateTimeMemberPath(a) {
this.e3 = a;
this.g("DateTimeMemberPath");
}
get labellingMode() {
return this.e4;
}
set labellingMode(a) {
this.e4 = a;
this.g("LabellingMode");
}
get labelFormats() {
return this.ex;
}
set labelFormats(a) {
this.ex = a;
this.g("LabelFormats");
}
get minimumValue() {
return this.e0;
}
set minimumValue(a) {
this.e0 = a;
this.g("MinimumValue");
}
get maximumValue() {
return this.ez;
}
set maximumValue(a) {
this.ez = a;
this.g("MaximumValue");
}
}
OrdinalTimeXAxisDescription.$t = /*@__PURE__*/ markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
})();