igniteui-react-core
Version:
Ignite UI React Core.
86 lines (85 loc) • 2.97 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 { CategoryXAxisDescription } from "./CategoryXAxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
var OrdinalTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(OrdinalTimeXAxisDescription, _super);
function OrdinalTimeXAxisDescription() {
var _this = _super.call(this) || this;
_this.e3 = null;
_this.e4 = null;
_this.ex = null;
_this.e0 = new Date();
_this.ez = new Date();
return _this;
}
OrdinalTimeXAxisDescription.prototype.get_type = function () {
return "OrdinalTimeXAxis";
};
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "dateTimeMemberPath", {
get: function () {
return this.e3;
},
set: function (a) {
this.e3 = a;
this.g("DateTimeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labellingMode", {
get: function () {
return this.e4;
},
set: function (a) {
this.e4 = a;
this.g("LabellingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labelFormats", {
get: function () {
return this.ex;
},
set: function (a) {
this.ex = a;
this.g("LabelFormats");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "minimumValue", {
get: function () {
return this.e0;
},
set: function (a) {
this.e0 = a;
this.g("MinimumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "maximumValue", {
get: function () {
return this.ez;
},
set: function (a) {
this.ez = a;
this.g("MaximumValue");
},
enumerable: false,
configurable: true
});
OrdinalTimeXAxisDescription.$t = markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
}(CategoryXAxisDescription));
export { OrdinalTimeXAxisDescription };