igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.05 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.gy = null;
_this.gz = null;
_this.gs = null;
_this.gv = new Date();
_this.gu = new Date();
return _this;
}
OrdinalTimeXAxisDescription.prototype.get_type = function () {
return "OrdinalTimeXAxis";
};
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "dateTimeMemberPath", {
get: function () {
return this.gy;
},
set: function (a) {
this.gy = a;
this.j("DateTimeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labellingMode", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.j("LabellingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "labelFormats", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("LabelFormats");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "minimumValue", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.j("MinimumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(OrdinalTimeXAxisDescription.prototype, "maximumValue", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.j("MaximumValue");
},
enumerable: false,
configurable: true
});
OrdinalTimeXAxisDescription.$t = markType(OrdinalTimeXAxisDescription, 'OrdinalTimeXAxisDescription', CategoryXAxisDescription.$);
return OrdinalTimeXAxisDescription;
}(CategoryXAxisDescription));
export { OrdinalTimeXAxisDescription };