(xyPairs)
| 867 | ]; |
| 868 | |
| 869 | function hoverData(xyPairs) { |
| 870 | // hovering on nothing can have undefined hover data - must be supported |
| 871 | if(!xyPairs.length) return; |
| 872 | |
| 873 | return xyPairs.map(function(xy) { |
| 874 | return { |
| 875 | x: xy[0], |
| 876 | y: xy[1], |
| 877 | xaxis: gd._fullLayout.xaxis, |
| 878 | yaxis: gd._fullLayout.yaxis |
| 879 | }; |
| 880 | }); |
| 881 | } |
| 882 | |
| 883 | function checkVisible(opts) { |
| 884 | gd._fullLayout.annotations.forEach(function(ann, i) { |
no outgoing calls
no test coverage detected
searching dependent graphs…