简体   繁体   中英

Title for colorbar in Plotly Heatmap

This is my code:

fig = go.Figure(
    data=go.Heatmap(z=z_values, y=[str(x) for x in params_1], x=[str(x) for x in params_2]), 
    layout=go.Layout(
        title="Analysis results",
        xaxis=dict(title='Diameter'),
        yaxis=dict(title='Max Distance')
    ),
)
fig.show()

It generates a 2D-heatmap (snippet below), but I'd like to include a title for the colorbar:

在此处输入图像描述

Unfortunately the plotly example also does not have a colorbar title. I have tried to include the colorbar properties with the "marker" but this throws an error. How can I do that hence?

Try

fig = go.Figure(
    data=go.Heatmap(z=z_values, y=[str(x) for x in params_1], x=[str(x) for x in params_2]), 
colorbar=dict(title='Title') , 
    layout=go.Layout(
        title="Analysis results",
        xaxis=dict(title='Diameter'),
        yaxis=dict(title='Max Distance')
    ),
)
fig.show()

Just include colorbar={"title": 'Your title'} in go.Heatmap() to get this:

Plot:

在此处输入图片说明

Code:

import plotly.graph_objects as go

fig = go.Figure(data=go.Heatmap(colorbar={"title": "Your title"},
                                            z=[[1, 20, 30],
                                              [20, 1, 60],
                                              [30, 60, 1]]))
 fig.show()

You can also do it after by updating the layout:

fig.update_layout(
    coloraxis_colorbar=dict(
        title="Your Title",
    ),
)
fig = ... fig.layout.coloraxis.colorbar.title = 'Title<br>Here'

None of these were working for me but doing this updated it without any issue:

fig = ...
fig.data[0].colorbar.title = "Title Here"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM