igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 2.88 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 { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let TimeAxisBaseDescription = /*@__PURE__*/ (() => {
class TimeAxisBaseDescription extends CategoryAxisBaseDescription {
constructor() {
super();
this.d5 = null;
this.dt = false;
this.dw = new Date();
this.dv = new Date();
this.dy = new Date();
this.dx = new Date();
this.d4 = null;
this.d3 = null;
}
get_type() {
return "TimeAxisBase";
}
get dateTimeMemberPath() {
return this.d5;
}
set dateTimeMemberPath(a) {
this.d5 = a;
this.e("DateTimeMemberPath");
}
get isDataPreSorted() {
return this.dt;
}
set isDataPreSorted(a) {
this.dt = a;
this.e("IsDataPreSorted");
}
get actualMinimumValue() {
return this.dw;
}
set actualMinimumValue(a) {
this.dw = a;
this.e("ActualMinimumValue");
}
get actualMaximumValue() {
return this.dv;
}
set actualMaximumValue(a) {
this.dv = a;
this.e("ActualMaximumValue");
}
get minimumValue() {
return this.dy;
}
set minimumValue(a) {
this.dy = a;
this.e("MinimumValue");
}
get maximumValue() {
return this.dx;
}
set maximumValue(a) {
this.dx = a;
this.e("MaximumValue");
}
get actualMinimumValueChangeRef() {
return this.d4;
}
set actualMinimumValueChangeRef(a) {
this.d4 = a;
this.e("ActualMinimumValueChangeRef");
}
get actualMaximumValueChangeRef() {
return this.d3;
}
set actualMaximumValueChangeRef(a) {
this.d3 = a;
this.e("ActualMaximumValueChangeRef");
}
}
TimeAxisBaseDescription.$t = markType(TimeAxisBaseDescription, 'TimeAxisBaseDescription', CategoryAxisBaseDescription.$);
return TimeAxisBaseDescription;
})();