(axLetter, val, hoverformat)
| 331 | } |
| 332 | |
| 333 | function formatter(axLetter, val, hoverformat) { |
| 334 | var ax = scene.fullSceneLayout[axLetter + 'axis']; |
| 335 | |
| 336 | if(ax.type !== 'log') { |
| 337 | val = ax.d2l(val); |
| 338 | } |
| 339 | |
| 340 | return Axes.hoverLabelText(ax, val, hoverformat); |
| 341 | } |
| 342 | |
| 343 | if(lastPicked !== null) { |
| 344 | var pdata = project(scene.glplot.cameraParams, selection.dataCoordinate); |
no outgoing calls
no test coverage detected
searching dependent graphs…