igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 4.1 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 { __extends } from "tslib";
import { TimeAxisBaseDescription } from "./TimeAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var CategoryDateTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CategoryDateTimeXAxisDescription, _super);
function CategoryDateTimeXAxisDescription() {
var _this = _super.call(this) || this;
_this.er = false;
_this.e3 = null;
_this.ev = 0;
_this.et = 0;
_this.ew = 0;
_this.eu = 0;
_this.e1 = null;
_this.e2 = null;
return _this;
}
CategoryDateTimeXAxisDescription.prototype.get_type = function () {
return "CategoryDateTimeXAxis";
};
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "unevenlySpacedLabels", {
get: function () {
return this.er;
},
set: function (a) {
this.er = a;
this.g("UnevenlySpacedLabels");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "displayType", {
get: function () {
return this.e3;
},
set: function (a) {
this.e3 = a;
this.g("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "interval", {
get: function () {
return this.ev;
},
set: function (a) {
this.ev = a;
this.g("Interval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualInterval", {
get: function () {
return this.et;
},
set: function (a) {
this.et = a;
this.g("ActualInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "minorInterval", {
get: function () {
return this.ew;
},
set: function (a) {
this.ew = a;
this.g("MinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorInterval", {
get: function () {
return this.eu;
},
set: function (a) {
this.eu = a;
this.g("ActualMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualIntervalChangeRef", {
get: function () {
return this.e1;
},
set: function (a) {
this.e1 = a;
this.g("ActualIntervalChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorIntervalChangeRef", {
get: function () {
return this.e2;
},
set: function (a) {
this.e2 = a;
this.g("ActualMinorIntervalChangeRef");
},
enumerable: false,
configurable: true
});
CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$);
return CategoryDateTimeXAxisDescription;
}(TimeAxisBaseDescription));
export { CategoryDateTimeXAxisDescription };