(d)
| 235 | return function(d){ return str + ': <b>' + d[str] + '</b>'} }) |
| 236 | |
| 237 | function ttDisplay(d){ |
| 238 | d3.select('.tooltip') |
| 239 | .classed('tooltip-hidden', false) |
| 240 | .html('') |
| 241 | .dataAppend(fieldFns, 'div') |
| 242 | .html(function(fn){ return fn(d) }) |
| 243 | |
| 244 | d3.select(this).classed('tooltipped', true) |
| 245 | } |
| 246 | |
| 247 | function ttMove(d){ |
| 248 | var tt = d3.select('.tooltip') |
nothing calls this directly
no outgoing calls
no test coverage detected