Fixed issue #76. Tooltips were not rendering for bullet charts.

master-patched
Robin Hu 11 years ago
parent 92df22993d
commit 95b0459d27

@ -1646,7 +1646,7 @@ nv.models.bulletChart = function() {
//------------------------------------------------------------
dispatch.on('tooltipShow', function(e) {
e.key = data[0].title;
e.key = d.title;
if (tooltips) showTooltip(e, that.parentNode);
});

10
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -216,7 +216,7 @@ nv.models.bulletChart = function() {
//------------------------------------------------------------
dispatch.on('tooltipShow', function(e) {
e.key = data[0].title;
e.key = d.title;
if (tooltips) showTooltip(e, that.parentNode);
});

Loading…
Cancel
Save