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.g0 = null;
this.g1 = null;
this.gu = null;
this.gx = new Date();
this.gw = new Date();
}
get dateTimeMemberPath() {
return this.g0;
}
set dateTimeMemberPath(a) {
this.g0 = a;
this.j("DateTimeMemberPath");
}
get labellingMode() {
return this.g1;
}
set labellingMode(a) {
this.g1 = a;
this.j("LabellingMode");
}
get labelFormats() {
return this.gu;
}
set labelFormats(a) {
this.gu = a;
this.j("LabelFormats");
}
get minimumValue() {
return this.gx;
}
set minimumValue(a) {
this.gx = a;
this.j("MinimumValue");
}
get maximumValue() {
return this.gw;
}
set maximumValue(a) {
this.gw = a;
this.j("MaximumValue");
}
}
OrdinalTimeXAxisDescription.$t = /*@__PURE__*/ markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
})();