(dragOptions)
| 1547 | } |
| 1548 | |
| 1549 | function getFillRangeItems(dragOptions) { |
| 1550 | var plotinfo = dragOptions.plotinfo; |
| 1551 | |
| 1552 | return ( |
| 1553 | plotinfo.fillRangeItems || // allow subplots (i.e. geo, mapbox, map, sankey) to override fillRangeItems routine |
| 1554 | makeFillRangeItems(dragOptions.xaxes.concat(dragOptions.yaxes)) |
| 1555 | ); |
| 1556 | } |
| 1557 | |
| 1558 | function emitSelecting(gd, eventData) { |
| 1559 | gd.emit('plotly_selecting', eventData); |
no test coverage detected
searching dependent graphs…