UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 3.01 kB
/* 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.fz = false; this.fy = false; this.f8 = null; this.f1 = false; this.f9 = null; this.f0 = false; this.f7 = null; this.f6 = null; } get_type() { return "CategorySeries"; } get isCustomCategoryStyleAllowed() { return this.fz; } set isCustomCategoryStyleAllowed(a) { this.fz = a; this.j("IsCustomCategoryStyleAllowed"); } get isCustomCategoryMarkerStyleAllowed() { return this.fy; } set isCustomCategoryMarkerStyleAllowed(a) { this.fy = a; this.j("IsCustomCategoryMarkerStyleAllowed"); } get categoryCollisionMode() { return this.f8; } set categoryCollisionMode(a) { this.f8 = a; this.j("CategoryCollisionMode"); } get useHighMarkerFidelity() { return this.f1; } set useHighMarkerFidelity(a) { this.f1 = a; this.j("UseHighMarkerFidelity"); } get transitionInMode() { return this.f9; } set transitionInMode(a) { this.f9 = a; this.j("TransitionInMode"); } get isTransitionInEnabled() { return this.f0; } set isTransitionInEnabled(a) { this.f0 = a; this.j("IsTransitionInEnabled"); } get assigningCategoryStyleRef() { return this.f7; } set assigningCategoryStyleRef(a) { this.f7 = a; this.j("AssigningCategoryStyleRef"); } get assigningCategoryMarkerStyleRef() { return this.f6; } set assigningCategoryMarkerStyleRef(a) { this.f6 = a; this.j("AssigningCategoryMarkerStyleRef"); } } CategorySeriesDescription.$t = markType(CategorySeriesDescription, 'CategorySeriesDescription', MarkerSeriesDescription.$); return CategorySeriesDescription; })();