igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.85 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.ej = null;
_this.eb = 0;
_this.d9 = 0;
_this.ec = 0;
_this.ea = 0;
_this.eh = null;
_this.ei = null;
return _this;
}
CategoryDateTimeXAxisDescription.prototype.get_type = function () {
return "CategoryDateTimeXAxis";
};
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "displayType", {
get: function () {
return this.ej;
},
set: function (a) {
this.ej = a;
this.e("DisplayType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "interval", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.e("Interval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualInterval", {
get: function () {
return this.d9;
},
set: function (a) {
this.d9 = a;
this.e("ActualInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "minorInterval", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.e("MinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorInterval", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.e("ActualMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualIntervalChangeRef", {
get: function () {
return this.eh;
},
set: function (a) {
this.eh = a;
this.e("ActualIntervalChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorIntervalChangeRef", {
get: function () {
return this.ei;
},
set: function (a) {
this.ei = a;
this.e("ActualMinorIntervalChangeRef");
},
enumerable: false,
configurable: true
});
CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$);
return CategoryDateTimeXAxisDescription;
}(TimeAxisBaseDescription));
export { CategoryDateTimeXAxisDescription };