We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49007e commit 698561cCopy full SHA for 698561c
src/plots/cartesian/graph_interact.js
@@ -107,7 +107,6 @@ module.exports = function initInteractions(gd) {
107
// the y position of the main x axis line
108
var y0 = xa._mainLinePosition;
109
if(xa.side === 'top') y0 -= DRAGGERSIZE;
110
- // if(xa.anchor === 'free') y0 -= fullLayout._size.h * (1 - ya.domain[1]);
111
dragBox(gd, plotinfo, xa._offset + xa._length * 0.1, y0,
112
xa._length * 0.8, DRAGGERSIZE, '', 'ew');
113
dragBox(gd, plotinfo, xa._offset, y0,
@@ -120,7 +119,6 @@ module.exports = function initInteractions(gd) {
120
119
// the x position of the main y axis line
121
var x0 = ya._mainLinePosition;
122
if(ya.side !== 'right') x0 -= DRAGGERSIZE;
123
- // if(ya.anchor === 'free') x0 -= fullLayout._size.w * xa.domain[0];
124
dragBox(gd, plotinfo, x0, ya._offset + ya._length * 0.1,
125
DRAGGERSIZE, ya._length * 0.8, 'ns', '');
126
dragBox(gd, plotinfo, x0, ya._offset + ya._length * 0.9,
0 commit comments