Colorbar position, display value, and adjusting hover in dash_bio.Clustergram

Hi, I’m trying out Clustergram from dash_bio, and have a few questions:

  1. Displaying value. When using heatmap (px.imshow), I could use text_auto=True to display the value. Is it possible to do similar with Clustergram?
    Values shown when using px.imshow
    image
    Nothing shown using Clustergram
    image

  2. How do I adjust the colorscale/color bar’s position, I want it to be placed closer to the heatmap, because I find the gap too big. I tried fig_heatmap.update_layout(coloraxis_colorbar_x=-0.1) but this does not seem to work.
    image

  3. Finally, is it possible to customize the hover? I want to remove the “trace 8” when hovering on the heatmap.
    image
    When hovering on the dendrogram, I would like to keep the “trace” info and remove the value.
    image
    I tried setting '<extra></extra>' for the hover_template, but that removes the cluster info when hovering the dendrogram.

Are one or some of these customizations possible? Any pointers would be helpful!