igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
122 lines (121 loc) • 4.01 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.fy = null;
_this.fw = 0;
_this.fo = 0;
_this.fp = 0;
_this.fq = 0;
_this.fr = 0;
_this.fm = false;
_this.fz = null;
return _this;
}
CategoryAxisBaseDescription.prototype.get_type = function () {
return "CategoryAxisBase";
};
Object.defineProperty(CategoryAxisBaseDescription.prototype, "dataSourceRef", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCount", {
get: function () {
return this.fw;
},
set: function (a) {
this.fw = a;
this.j("ItemsCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "gap", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.j("Gap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "maximumGap", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.j("MaximumGap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "minimumGapSize", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.j("MinimumGapSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "overlap", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.j("Overlap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "useClusteringMode", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.j("UseClusteringMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCountChangeRef", {
get: function () {
return this.fz;
},
set: function (a) {
this.fz = a;
this.j("ItemsCountChangeRef");
},
enumerable: false,
configurable: true
});
CategoryAxisBaseDescription.$t = markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
}(AxisDescription));
export { CategoryAxisBaseDescription };