/** * Almost all cursor types supported by browsers that we use throughout SciChart for mouse interaction. * * See {@link https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/cursor} for details */ export declare enum ECursorStyle { Default = "auto", Pointer = "pointer", Crosshair = "crosshair", Text = "text", NotAllowed = "not-allowed", Grab = "grab", Grabbing = "grabbing", Move = "move", /** ↔ (but with a vertical bar in between the arrows) */ Col = "col-resize", /** ↕ (but with a horizontal bar in between the arrows) */ Row = "row-resize", /** ↕ */ NS = "ns-resize", /** ↔ */ EW = "ew-resize", /** ↗ */ NE = "ne-resize", /** ↖ */ NW = "nw-resize", /** ↘ */ SE = "se-resize", /** ↙ */ SW = "sw-resize", /** ⤡ */ NESW = "nesw-resize", /** ⤢ */ NWSE = "nwse-resize" }