scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
11 lines (10 loc) • 524 B
TypeScript
/**
* Enumeration constants to define how getWindowedYRange should behave
*/
export declare enum EYRangeMode {
/** Y Range will be calculated based on the visible points. (Default). In some cases lines to points outside the range may escape the axis */
Visible = "Visible",
/** Y Range will include the points either side of the visible set.
* The series is guaranteed to be drawn within the axis bounds, but the range could be affected by extreme points just outside */
Drawn = "Drawn"
}