Commit 3ec3b83d authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix tooltip when data hidden

parent 08dc00a0
...@@ -2513,7 +2513,7 @@ ...@@ -2513,7 +2513,7 @@
if (hasArcType(c3.data.targets)) { return; } if (hasArcType(c3.data.targets)) { return; }
// Show tooltip // Show tooltip
selectedData = c3.data.targets.map(function (d) { selectedData = filterTargetsToShow(c3.data.targets).map(function (d) {
return addName(d.values[i]); return addName(d.values[i]);
}); });
showTooltip(selectedData, d3.mouse(this)); showTooltip(selectedData, d3.mouse(this));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment