scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
15 lines (14 loc) • 399 B
TypeScript
/**
* List of values for ZoomState in SciChart
*/
export declare enum EZoomState {
/**
* ZoomStates is at extents. This is if the user has called zoomExtents() on the {@link SciChartSurface},
* or, the user has double clicked on the {@link ZoomExtentsModifier}
*/
AtExtents = 0,
/**
* User has initiated a Zoom operation
*/
UserZooming = 1
}