UNPKG

igniteui-react-core

Version:
26 lines (25 loc) 1.29 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 { markEnum } from "./type"; /** * Describes mode of legend badges that represent all series in a legend */ export var LegendItemBadgeMode = /*@__PURE__*/ (function (LegendItemBadgeMode) { /** * Specifies legend badges with simplified visuals of series, e.g. with fixed thickness, no overlaid markers */ LegendItemBadgeMode[LegendItemBadgeMode["Simplified"] = 0] = "Simplified"; /** * Specifies legend badges that match all visuals of series such as thickness and markers (if supported by a series) */ LegendItemBadgeMode[LegendItemBadgeMode["MatchSeries"] = 1] = "MatchSeries"; return LegendItemBadgeMode; })({}); /** * @hidden */ export let LegendItemBadgeMode_$type = /*@__PURE__*/ markEnum('LegendItemBadgeMode', 'Simplified,0|MatchSeries,1');