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.gy = null;
this.gz = null;
this.gs = null;
this.gv = new Date();
this.gu = new Date();
}
get_type() {
return "OrdinalTimeXAxis";
}
get dateTimeMemberPath() {
return this.gy;
}
set dateTimeMemberPath(a) {
this.gy = a;
this.j("DateTimeMemberPath");
}
get labellingMode() {
return this.gz;
}
set labellingMode(a) {
this.gz = a;
this.j("LabellingMode");
}
get labelFormats() {
return this.gs;
}
set labelFormats(a) {
this.gs = a;
this.j("LabelFormats");
}
get minimumValue() {
return this.gv;
}
set minimumValue(a) {
this.gv = a;
this.j("MinimumValue");
}
get maximumValue() {
return this.gu;
}
set maximumValue(a) {
this.gu = a;
this.j("MaximumValue");
}
}
OrdinalTimeXAxisDescription.$t = markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
})();