Hi guys,
In spite of the new release (v4.6.0), I believe the variable “customdata” is not correctly handled in the sunburst. For instance, the case to follow doesn’t work properly:
customdata=np.dstack((a, b)),
hovertemplate='<br>%{customdata[0]:.3f} <br> %{customdata[1]:.3f} ',
However, if I have simply
customdata=a,
hovertemplate='<br>%{customdata:.3f} <br>',
then everything works smoothly.