igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
23 lines (22 loc) • 597 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Describes the scrollbar mode to use for the series viewer.
*/
export declare enum SeriesViewerVerticalScrollbarPosition {
/**
* Vertical scrollbar position will be decided by the series viewer.
*/
Auto = 0,
/**
* Vertical scrollbar will be used in the plot area inside left position.
*/
InsideLeft = 1,
/**
* Vertical scrollbar will be used in the plot area inside right position.
*/
InsideRight = 2
}
/**
* @hidden
*/
export declare let SeriesViewerVerticalScrollbarPosition_$type: Type;