igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 3.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 { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let CategorySeriesDescription = /*@__PURE__*/ (() => {
class CategorySeriesDescription extends MarkerSeriesDescription {
constructor() {
super();
this.fu = false;
this.ft = false;
this.f3 = null;
this.fw = false;
this.f4 = null;
this.fv = false;
this.f2 = null;
this.f1 = null;
}
get_type() {
return "CategorySeries";
}
get isCustomCategoryStyleAllowed() {
return this.fu;
}
set isCustomCategoryStyleAllowed(a) {
this.fu = a;
this.g("IsCustomCategoryStyleAllowed");
}
get isCustomCategoryMarkerStyleAllowed() {
return this.ft;
}
set isCustomCategoryMarkerStyleAllowed(a) {
this.ft = a;
this.g("IsCustomCategoryMarkerStyleAllowed");
}
get categoryCollisionMode() {
return this.f3;
}
set categoryCollisionMode(a) {
this.f3 = a;
this.g("CategoryCollisionMode");
}
get useHighMarkerFidelity() {
return this.fw;
}
set useHighMarkerFidelity(a) {
this.fw = a;
this.g("UseHighMarkerFidelity");
}
get transitionInMode() {
return this.f4;
}
set transitionInMode(a) {
this.f4 = a;
this.g("TransitionInMode");
}
get isTransitionInEnabled() {
return this.fv;
}
set isTransitionInEnabled(a) {
this.fv = a;
this.g("IsTransitionInEnabled");
}
get assigningCategoryStyleRef() {
return this.f2;
}
set assigningCategoryStyleRef(a) {
this.f2 = a;
this.g("AssigningCategoryStyleRef");
}
get assigningCategoryMarkerStyleRef() {
return this.f1;
}
set assigningCategoryMarkerStyleRef(a) {
this.f1 = a;
this.g("AssigningCategoryMarkerStyleRef");
}
}
CategorySeriesDescription.$t = markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$);
return CategorySeriesDescription;
})();