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.dp = null;
_this.dm = 0;
_this.de = 0;
_this.df = 0;
_this.dg = 0;
_this.dh = 0;
_this.dc = false;
_this.dq = null;
return _this;
}
CategoryAxisBaseDescription.prototype.get_type = function () {
return "CategoryAxisBase";
};
Object.defineProperty(CategoryAxisBaseDescription.prototype, "dataSourceRef", {
get: function () {
return this.dp;
},
set: function (a) {
this.dp = a;
this.e("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCount", {
get: function () {
return this.dm;
},
set: function (a) {
this.dm = a;
this.e("ItemsCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "gap", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("Gap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "maximumGap", {
get: function () {
return this.df;
},
set: function (a) {
this.df = a;
this.e("MaximumGap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "minimumGapSize", {
get: function () {
return this.dg;
},
set: function (a) {
this.dg = a;
this.e("MinimumGapSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "overlap", {
get: function () {
return this.dh;
},
set: function (a) {
this.dh = a;
this.e("Overlap");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "useClusteringMode", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("UseClusteringMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAxisBaseDescription.prototype, "itemsCountChangeRef", {
get: function () {
return this.dq;
},
set: function (a) {
this.dq = a;
this.e("ItemsCountChangeRef");
},
enumerable: false,
configurable: true
});
CategoryAxisBaseDescription.$t = markType(CategoryAxisBaseDescription, 'CategoryAxisBaseDescription', AxisDescription.$);
return CategoryAxisBaseDescription;
}(AxisDescription));
export { CategoryAxisBaseDescription };