UNPKG

igniteui-react-core

Version:
30 lines (29 loc) 1.3 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 for displaying units after series values in the data legend. */ export var DataLegendUnitsMode = /*@__PURE__*/ (function (DataLegendUnitsMode) { /** * Specifies automatic visibility of units based on series type */ DataLegendUnitsMode[DataLegendUnitsMode["Auto"] = 0] = "Auto"; /** * Specifies always visible units after series values */ DataLegendUnitsMode[DataLegendUnitsMode["Visible"] = 1] = "Visible"; /** * Specifies hidden units after series values */ DataLegendUnitsMode[DataLegendUnitsMode["Hidden"] = 2] = "Hidden"; return DataLegendUnitsMode; })({}); /** * @hidden */ export let DataLegendUnitsMode_$type = /*@__PURE__*/ markEnum('DataLegendUnitsMode', 'Auto,0|Visible,1|Hidden,2');