This is an excellent package to show hierarchy levels.
as per provided document of collapsibleTree Package
Here in below code he has used a image in tooltip.
org$tooltip <- paste0(
org$Employee,
"<br>Title:",
org$Title,
"<br><img src='https://source.unsplash.com/collection/385548/150x100'>"
)
collapsibleTreeNetwork(
org,
attribute = "Title",
fill = "Color",
nodeSize = "leafCount",
tooltipHtml = "tooltip"
)
Here a single image is shown at every bubble.
In my table i have a column of images per each Employee.
Now for example A Employee --> Image A should be show. Likewise it should show for all the employees.
Is it possible.
Any suggestions will be appreciable.
Thanks Mohan V