igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.56 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.gi = null;
_this.go = null;
_this.gk = null;
_this.gj = null;
return _this;
}
TimeXAxisDescription.prototype.get_type = function () {
return "TimeXAxis";
};
Object.defineProperty(TimeXAxisDescription.prototype, "breaks", {
get: function () {
return this.gi;
},
set: function (a) {
this.gi = a;
this.j("Breaks");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labellingMode", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("LabellingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "labelFormats", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.j("LabelFormats");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TimeXAxisDescription.prototype, "intervals", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.j("Intervals");
},
enumerable: false,
configurable: true
});
TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$);
return TimeXAxisDescription;
}(TimeAxisBaseDescription));
export { TimeXAxisDescription };