UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

27 lines (26 loc) 713 B
import { Type } from "igniteui-react-core"; /** * Describes the scrollbar mode to use for the series viewer. */ export declare enum SeriesViewerScrollbarMode { /** * No horizontal scrollbar will be visible. */ None = 0, /** * Fading scrollbar will be used that shows only when zoom/pan is changing or the cursor is near. */ Fading = 1, /** * A scrollbar that faides to a hairline will be used that shows only when zoom/pan is changing or the cursor is near. */ FadeToLine = 2, /** * Persistent scrollbar will be used that shows all the time. */ Persistent = 3 } /** * @hidden */ export declare let SeriesViewerScrollbarMode_$type: Type;