igniteui-react-core
Version:
Ignite UI React Core.
134 lines (133 loc) • 4.25 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 { AxisDescription } from "./AxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
var CategoryAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CategoryAxisBaseDescription, _super);
function CategoryAxisBaseDescription() {
var _this = _super.call(this) || this;
_this.f0 = null;
_this.fy = 0;
_this.fq = 0;
_this.fr = 0;
_this.fs = 0;
_this.ft = 0;
_this.fn = false;
_this.fm = false;
_this.f1 = null;
return _this;
}
CategoryAxisBaseDescription.prototype.get_type = function () {
return "CategoryAxisBase";
};
Object.defineProperty(CategoryAxisBaseDescription.prototype, "dataSourceRef", {
get: function () {
return this.f0;
},
set: function (a) {
this.f0 = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCount", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.j("ItemsCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "gap", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.j("Gap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "maximumGap", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.j("MaximumGap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "minimumGapSize", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.j("MinimumGapSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "overlap", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.j("Overlap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "useClusteringMode", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.j("UseClusteringMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "isLastLabelMandatory", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.j("IsLastLabelMandatory");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCountChangeRef", {
get: function () {
return this.f1;
},
set: function (a) {
this.f1 = a;
this.j("ItemsCountChangeRef");
},
enumerable: false,
configurable: true
});
CategoryAxisBaseDescription.$t = markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
}(AxisDescription));
export { CategoryAxisBaseDescription };