I can’t manage to change the suffix for numbers shown in the colorbar. This is the plot so far
fig.update_coloraxes(colorbar_ticksuffix='°')
might work but apparently it doesn’t. Any idea on how to fix this?
@Mirk0_98
The solution is to search the web for the html code for angle degree. I found out this one: https://www.toptal.com/designers/htmlarrows/math/degree-sign/ and updated as:
fig.update_coloraxes(colorbar_ticksuffix="°")
Actually the problem is not the symbol " ° " but any type of suffix. I can’t even add " C " as suffix. Can you please make up a working example of go.Heatmap() with a suffix in the colorbar?