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