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 0b00ed9 commit 0afa52cCopy full SHA for 0afa52c
src/components/selections/select.js
@@ -1503,10 +1503,13 @@ function getFillRangeItems(dragOptions) {
1503
}
1504
1505
function emitSelecting(gd, eventData) {
1506
+ if(drawMode(gd._fullLayout.dragmode)) return;
1507
gd.emit('plotly_selecting', eventData);
1508
1509
1510
function emitSelected(gd, eventData) {
1511
1512
+
1513
if(eventData) {
1514
eventData.selections = (gd.layout || {}).selections || [];
1515
@@ -1515,6 +1518,7 @@ function emitSelected(gd, eventData) {
1518
1516
1519
1517
1520
function emitDeselect(gd) {
1521
1522
gd.emit('plotly_deselect', null);
1523
1524
0 commit comments