scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
19 lines (18 loc) • 485 B
TypeScript
/**
* List of values for Autorange behaviour on Axis in SciChart
*/
export declare enum EAutoRange {
/**
* (Default mode) AutoRange once on startup, after that, the user must specify {@link AxisCore.visibleRange}
* or call {@link SciChartSurface.zoomExtents}
*/
Once = "Once",
/**
* Autorange Always when the data changes
*/
Always = "Always",
/**
* Never autorange (full manual mode)
*/
Never = "Never"
}