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.ev = null;
this.ew = null;
this.ep = null;
this.es = new Date();
this.er = new Date();
}
get dateTimeMemberPath() {
return this.ev;
}
set dateTimeMemberPath(a) {
this.ev = a;
this.g("DateTimeMemberPath");
}
get labellingMode() {
return this.ew;
}
set labellingMode(a) {
this.ew = a;
this.g("LabellingMode");
}
get labelFormats() {
return this.ep;
}
set labelFormats(a) {
this.ep = a;
this.g("LabelFormats");
}
get minimumValue() {
return this.es;
}
set minimumValue(a) {
this.es = a;
this.g("MinimumValue");
}
get maximumValue() {
return this.er;
}
set maximumValue(a) {
this.er = a;
this.g("MaximumValue");
}
}
OrdinalTimeXAxisDescription.$t = /*@__PURE__*/ markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
})();