UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

18 lines (17 loc) 602 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EDragMode = void 0; /** * Enumeration constants to define the drag mode of {@link XAxisDragModifier | YAxisDragModifier} */ var EDragMode; (function (EDragMode) { /** * When this EDragMode is chosen, the axis scales at the top and bottom when dragging the mouse */ EDragMode["Scaling"] = "Scaling"; /** * When this EDragMode is chosen, the axis pans on dragging */ EDragMode["Panning"] = "Panning"; })(EDragMode = exports.EDragMode || (exports.EDragMode = {}));