MCPcopy Create free account
hub / github.com/BloombergGraphics/whatiscode / ttDisplay

Function ttDisplay

scripts/libs/d3-jetpack.js:237–245  ·  view source on GitHub ↗
(d)

Source from the content-addressed store, hash-verified

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')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected