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.er = null;
_this.ex = null;
_this.et = null;
_this.es = null;
return _this;
}
TimeXAxisDescription.prototype.get_type = function () {
return "TimeXAxis";
};
Object.defineProperty(TimeXAxisDescription.prototype, "breaks", {
get: function () {
return this.er;
},
set: function (a) {
this.er = a;
this.g("Breaks");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labellingMode", {
get: function () {
return this.ex;
},
set: function (a) {
this.ex = a;
this.g("LabellingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labelFormats", {
get: function () {
return this.et;
},
set: function (a) {
this.et = a;
this.g("LabelFormats");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "intervals", {
get: function () {
return this.es;
},
set: function (a) {
this.es = a;
this.g("Intervals");
},
enumerable: false,
configurable: true
});
TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
}(TimeAxisBaseDescription));
export { TimeXAxisDescription };