UNPKG

igniteui-react-core

Version:
30 lines (29 loc) 1.5 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 available modes for displaying empty values in chart legend. */ export var LegendEmptyValuesMode = /*@__PURE__*/ (function (LegendEmptyValuesMode) { /** * Always hide legend items for zero values regradless of the Others Category. */ LegendEmptyValuesMode[LegendEmptyValuesMode["AlwaysHidden"] = 0] = "AlwaysHidden"; /** * Always show legend items for zero values even when the Others Category is present. */ LegendEmptyValuesMode[LegendEmptyValuesMode["AlwaysVisible"] = 1] = "AlwaysVisible"; /** * Show legend items for zero values only when the Others Category is not present. */ LegendEmptyValuesMode[LegendEmptyValuesMode["ShowWhenNoOthersCategory"] = 2] = "ShowWhenNoOthersCategory"; return LegendEmptyValuesMode; })({}); /** * @hidden */ export let LegendEmptyValuesMode_$type = /*@__PURE__*/ markEnum('LegendEmptyValuesMode', 'AlwaysHidden,0|AlwaysVisible,1|ShowWhenNoOthersCategory,2');