UNPKG

igniteui-react-core

Version:
30 lines (29 loc) 1.44 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 positions on the crossing axis at which the category tooltip can be displayed. */ export var DataToolTipLayerGroupingMode = /*@__PURE__*/ (function (DataToolTipLayerGroupingMode) { /** * A grouping mode is selected automatically */ DataToolTipLayerGroupingMode[DataToolTipLayerGroupingMode["Auto"] = 0] = "Auto"; /** * Displays a grouped tooltip based on the primary axis if possible. */ DataToolTipLayerGroupingMode[DataToolTipLayerGroupingMode["Grouped"] = 1] = "Grouped"; /** * Displays individual tooltips for each series. */ DataToolTipLayerGroupingMode[DataToolTipLayerGroupingMode["Individual"] = 2] = "Individual"; return DataToolTipLayerGroupingMode; })({}); /** * @hidden */ export let DataToolTipLayerGroupingMode_$type = /*@__PURE__*/ markEnum('DataToolTipLayerGroupingMode', 'Auto,0|Grouped,1|Individual,2');