igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 4.11 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var CategorySeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CategorySeriesDescription, _super);
function CategorySeriesDescription() {
var _this = _super.call(this) || this;
_this.fu = false;
_this.ft = false;
_this.f3 = null;
_this.fw = false;
_this.f4 = null;
_this.fv = false;
_this.f2 = null;
_this.f1 = null;
return _this;
}
CategorySeriesDescription.prototype.get_type = function () {
return "CategorySeries";
};
Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryStyleAllowed", {
get: function () {
return this.fu;
},
set: function (a) {
this.fu = a;
this.g("IsCustomCategoryStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryMarkerStyleAllowed", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.g("IsCustomCategoryMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "categoryCollisionMode", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.g("CategoryCollisionMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "useHighMarkerFidelity", {
get: function () {
return this.fw;
},
set: function (a) {
this.fw = a;
this.g("UseHighMarkerFidelity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "transitionInMode", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.g("TransitionInMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.fv;
},
set: function (a) {
this.fv = a;
this.g("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryStyleRef", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.g("AssigningCategoryStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryMarkerStyleRef", {
get: function () {
return this.f1;
},
set: function (a) {
this.f1 = a;
this.g("AssigningCategoryMarkerStyleRef");
},
enumerable: false,
configurable: true
});
CategorySeriesDescription.$t = markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$);
return CategorySeriesDescription;
}(MarkerSeriesDescription));
export { CategorySeriesDescription };