scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
40 lines (39 loc) • 1.44 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ECursorStyle = void 0;
/**
* 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
*/
var ECursorStyle;
(function (ECursorStyle) {
ECursorStyle["Default"] = "auto";
ECursorStyle["Pointer"] = "pointer";
ECursorStyle["Crosshair"] = "crosshair";
ECursorStyle["Text"] = "text";
ECursorStyle["NotAllowed"] = "not-allowed";
ECursorStyle["Grab"] = "grab";
ECursorStyle["Grabbing"] = "grabbing";
ECursorStyle["Move"] = "move";
/** ↔ (but with a vertical bar in between the arrows) */
ECursorStyle["Col"] = "col-resize";
/** ↕ (but with a horizontal bar in between the arrows) */
ECursorStyle["Row"] = "row-resize";
/** ↕ */
ECursorStyle["NS"] = "ns-resize";
/** ↔ */
ECursorStyle["EW"] = "ew-resize";
/** ↗ */
ECursorStyle["NE"] = "ne-resize";
/** ↖ */
ECursorStyle["NW"] = "nw-resize";
/** ↘ */
ECursorStyle["SE"] = "se-resize";
/** ↙ */
ECursorStyle["SW"] = "sw-resize";
/** ⤡ */
ECursorStyle["NESW"] = "nesw-resize";
/** ⤢ */
ECursorStyle["NWSE"] = "nwse-resize";
})(ECursorStyle = exports.ECursorStyle || (exports.ECursorStyle = {}));