igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.92 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 { CategoryAngleAxisDescription } from "./CategoryAngleAxisDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ProportionalCategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ProportionalCategoryAngleAxisDescription, _super);
function ProportionalCategoryAngleAxisDescription() {
var _this = _super.call(this) || this;
_this.gs = null;
_this.go = 0;
_this.gr = null;
_this.gq = null;
return _this;
}
ProportionalCategoryAngleAxisDescription.prototype.get_type = function () {
return "ProportionalCategoryAngleAxis";
};
Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "valueMemberPath", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryThreshold", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("OthersCategoryThreshold");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryType", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("OthersCategoryType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ProportionalCategoryAngleAxisDescription.prototype, "othersCategoryText", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("OthersCategoryText");
},
enumerable: false,
configurable: true
});
ProportionalCategoryAngleAxisDescription.$t = markType(ProportionalCategoryAngleAxisDescription, 'ProportionalCategoryAngleAxisDescription', CategoryAngleAxisDescription.$);
return ProportionalCategoryAngleAxisDescription;
}(CategoryAngleAxisDescription));
export { ProportionalCategoryAngleAxisDescription };