Skip to content
Snippets Groups Projects
Commit e7622fc5 authored by Leander's avatar Leander
Browse files

fix: add complete dataset, fix wrong tooltip data

parent a6ce6eda
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -107,6 +107,7 @@ export default class BubbleChart extends SearchableChart { ...@@ -107,6 +107,7 @@ export default class BubbleChart extends SearchableChart {
.attr('r', (d: any) => d.r) .attr('r', (d: any) => d.r)
.attr('data-leaf', (d: any) => d.children ? 'false' : 'true') .attr('data-leaf', (d: any) => d.children ? 'false' : 'true')
.attr('data-player', (d: any) => d.data.player) .attr('data-player', (d: any) => d.data.player)
node.selectAll('circle[data-leaf="true"]')
.on('mouseover', (_: Event, d: any) => { .on('mouseover', (_: Event, d: any) => {
vis.renderTooltip(d.data) vis.renderTooltip(d.data)
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment