将静态色标设置为 Plotly 热图动画

Set static colorscale to Plotly Heatmap animation

我创建了一个热图动画,现在我正在尝试设置色阶,以便与帧之间的颜色和值保持一致。 我在这个 中读到 cmin 和 cmax 可以完成这项工作,但是热图没有这样的参数。
有没有其他方法可以得到相同的结果?

我不知道这是否有帮助,但这是我的图

framestamps = [go.Frame(data=[go.Heatmap(
    x=lon,
    y=lat,
    z=T_series['thetao'][i],
    colorscale='aggrnyl'
)]) for i in range(300)]


fig = go.Figure(
    data=[go.Heatmap(
        x=lon,
        y=lat,
        z=T_series['thetao'][0],
        colorscale='aggrnyl'
    )],
    layout=go.Layout(
        updatemenus=[dict(
            type='buttons',
            buttons=[dict(
                label='Play',
                method='animate',
                args = [None, {"frame": {"duration": 250,"redraw": True},
                                "fromcurrent": True}],
            )]
        )]
    ),
    frames=framestamps
)

您可以使用 go.Heatmapzmin and zmax 个参数。