igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.87 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.dq = false;
_this.dp = false;
_this.ds = false;
_this.dz = null;
_this.dr = false;
_this.dy = null;
_this.dx = null;
return _this;
}
CategorySeriesDescription.prototype.get_type = function () {
return "CategorySeries";
};
Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryStyleAllowed", {
get: function () {
return this.dq;
},
set: function (a) {
this.dq = a;
this.e("IsCustomCategoryStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "isCustomCategoryMarkerStyleAllowed", {
get: function () {
return this.dp;
},
set: function (a) {
this.dp = a;
this.e("IsCustomCategoryMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "useHighMarkerFidelity", {
get: function () {
return this.ds;
},
set: function (a) {
this.ds = a;
this.e("UseHighMarkerFidelity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "transitionInMode", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("TransitionInMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "isTransitionInEnabled", {
get: function () {
return this.dr;
},
set: function (a) {
this.dr = a;
this.e("IsTransitionInEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryStyleRef", {
get: function () {
return this.dy;
},
set: function (a) {
this.dy = a;
this.e("AssigningCategoryStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategorySeriesDescription.prototype, "assigningCategoryMarkerStyleRef", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("AssigningCategoryMarkerStyleRef");
},
enumerable: false,
configurable: true
});
CategorySeriesDescription.$t = markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$);
return CategorySeriesDescription;
}(MarkerSeriesDescription));
export { CategorySeriesDescription };