igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.14 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 {
constructor() {
super();
this.el = null;
this.em = null;
this.ef = null;
this.ei = new Date();
this.eh = new Date();
}
get_type() {
return "OrdinalTimeXAxis";
}
get dateTimeMemberPath() {
return this.el;
}
set dateTimeMemberPath(a) {
this.el = a;
this.e("DateTimeMemberPath");
}
get labellingMode() {
return this.em;
}
set labellingMode(a) {
this.em = a;
this.e("LabellingMode");
}
get labelFormats() {
return this.ef;
}
set labelFormats(a) {
this.ef = a;
this.e("LabelFormats");
}
get minimumValue() {
return this.ei;
}
set minimumValue(a) {
this.ei = a;
this.e("MinimumValue");
}
get maximumValue() {
return this.eh;
}
set maximumValue(a) {
this.eh = a;
this.e("MaximumValue");
}
}
OrdinalTimeXAxisDescription.$t = markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
})();