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
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -107,6 +107,7 @@ export default class BubbleChart extends SearchableChart {
.attr('r', (d: any) => d.r)
.attr('data-leaf', (d: any) => d.children ? 'false' : 'true')
.attr('data-player', (d: any) => d.data.player)
node.selectAll('circle[data-leaf="true"]')
.on('mouseover', (_: Event, d: any) => {
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