scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
14 lines (13 loc) • 398 B
TypeScript
/**
* Enumeration constants to define the drag mode of {@link XAxisDragModifier | YAxisDragModifier}
*/
export declare enum EDragMode {
/**
* When this EDragMode is chosen, the axis scales at the top and bottom when dragging the mouse
*/
Scaling = "Scaling",
/**
* When this EDragMode is chosen, the axis pans on dragging
*/
Panning = "Panning"
}