igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.49 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 TimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TimeXAxisDescription, _super);
function TimeXAxisDescription() {
var _this = _super.call(this) || this;
_this.ej = null;
_this.ep = null;
_this.el = null;
_this.ek = null;
return _this;
}
TimeXAxisDescription.prototype.get_type = function () {
return "TimeXAxis";
};
Object.defineProperty(TimeXAxisDescription.prototype, "breaks", {
get: function () {
return this.ej;
},
set: function (a) {
this.ej = a;
this.g("Breaks");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labellingMode", {
get: function () {
return this.ep;
},
set: function (a) {
this.ep = a;
this.g("LabellingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labelFormats", {
get: function () {
return this.el;
},
set: function (a) {
this.el = a;
this.g("LabelFormats");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "intervals", {
get: function () {
return this.ek;
},
set: function (a) {
this.ek = a;
this.g("Intervals");
},
enumerable: false,
configurable: true
});
TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
}(TimeAxisBaseDescription));
export { TimeXAxisDescription };