UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

30 lines (29 loc) 1.32 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 "igniteui-angular-core"; /** * Describes available modes for selecting slices. */ export var SliceSelectionMode = /*@__PURE__*/ (function (SliceSelectionMode) { /** * Slices can be programmatically selected but cannot be selected through the UI. */ SliceSelectionMode[SliceSelectionMode["Manual"] = 0] = "Manual"; /** * Single slice can be selected through the UI. */ SliceSelectionMode[SliceSelectionMode["Single"] = 1] = "Single"; /** * Multiple slices can be selected through the UI. */ SliceSelectionMode[SliceSelectionMode["Multiple"] = 2] = "Multiple"; return SliceSelectionMode; })({}); /** * @hidden */ export let SliceSelectionMode_$type = markEnum('SliceSelectionMode', 'Manual,0|Single,1|Multiple,2');