UNPKG

igniteui-react-core

Version:
26 lines (25 loc) 1.21 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 values in the data legend. */ export var DataLegendLayoutMode = /*@__PURE__*/ (function (DataLegendLayoutMode) { /** * Specifies a layout mode where values of series are placed in columns of a table */ DataLegendLayoutMode[DataLegendLayoutMode["Table"] = 0] = "Table"; /** * Specifies a layout mode where values of series are stacked vertically below series title */ DataLegendLayoutMode[DataLegendLayoutMode["Vertical"] = 1] = "Vertical"; return DataLegendLayoutMode; })({}); /** * @hidden */ export var DataLegendLayoutMode_$type = /*@__PURE__*/ markEnum('DataLegendLayoutMode', 'Table,0|Vertical,1');