igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
30 lines (29 loc) • 1.3 kB
JavaScript
/*
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-react-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 = /*@__PURE__*/ markEnum('SliceSelectionMode', 'Manual,0|Single,1|Multiple,2');