(root, tweenCallback)
| 124 | } |
| 125 | |
| 126 | function renderHighlight(root, tweenCallback) { |
| 127 | var bar = d3.select(root).selectAll('.highlight, .highlight-shadow'); |
| 128 | var barToStyle = tweenCallback ? bar.transition().duration(c.bar.snapDuration).each('end', tweenCallback) : bar; |
| 129 | styleHighlight(barToStyle); |
| 130 | } |
| 131 | |
| 132 | function getInterval(d, y) { |
| 133 | var b = d.brush; |
no test coverage detected
searching dependent graphs…