igniteui-react-core
Version:
Ignite UI React Core.
88 lines (87 loc) • 2.94 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategorySeriesDescription = /*@__PURE__*/ (() => {
class CategorySeriesDescription extends MarkerSeriesDescription {
get_type() {
return "CategorySeries";
}
constructor() {
super();
this.f1 = false;
this.f0 = false;
this.ga = null;
this.f3 = false;
this.gb = null;
this.f2 = false;
this.f9 = null;
this.f8 = null;
}
get isCustomCategoryStyleAllowed() {
return this.f1;
}
set isCustomCategoryStyleAllowed(a) {
this.f1 = a;
this.j("IsCustomCategoryStyleAllowed");
}
get isCustomCategoryMarkerStyleAllowed() {
return this.f0;
}
set isCustomCategoryMarkerStyleAllowed(a) {
this.f0 = a;
this.j("IsCustomCategoryMarkerStyleAllowed");
}
get categoryCollisionMode() {
return this.ga;
}
set categoryCollisionMode(a) {
this.ga = a;
this.j("CategoryCollisionMode");
}
get useHighMarkerFidelity() {
return this.f3;
}
set useHighMarkerFidelity(a) {
this.f3 = a;
this.j("UseHighMarkerFidelity");
}
get transitionInMode() {
return this.gb;
}
set transitionInMode(a) {
this.gb = a;
this.j("TransitionInMode");
}
get isTransitionInEnabled() {
return this.f2;
}
set isTransitionInEnabled(a) {
this.f2 = a;
this.j("IsTransitionInEnabled");
}
get assigningCategoryStyleRef() {
return this.f9;
}
set assigningCategoryStyleRef(a) {
this.f9 = a;
this.j("AssigningCategoryStyleRef");
}
get assigningCategoryMarkerStyleRef() {
return this.f8;
}
set assigningCategoryMarkerStyleRef(a) {
this.f8 = a;
this.j("AssigningCategoryMarkerStyleRef");
}
}
CategorySeriesDescription.$t = /*@__PURE__*/ markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$);
return CategorySeriesDescription;
})();