gpt4 book ai didi

python - 如何在价格图表上自动调整 plotly Y 范围

转载 作者:太空宇宙 更新时间:2023-11-03 15:50:21 25 4
gpt4 key购买 nike

我绘制了价格图表。 Y 轴刻度设置为整个价格范围内的最低价和最高价。

enter image description here

当我减小范围时,例如当我显示最后一小时时,Y 轴不缩放并且给出相同的范围。如何才能使 Y 轴自动缩放到可见的价格范围?

enter image description here

这是我的布局

layout = go.Layout(
title=title,
legend=dict(orientation="h"),
xaxis=dict(
rangeselector=dict(
buttons=list([
dict(count=1,
label='1h',
step='hour',
stepmode='backward'),
dict(count=3,
label='3h',
step='hour',
stepmode='backward'),
dict(count=6,
label='6h',
step='hour',
stepmode='backward'),
dict(count=1,
label='1d',
step='day',
stepmode='backward'),
dict(count=3,
label='3d',
step='day',
stepmode='backward'),
dict(step='all')
])
),
rangeslider=dict(),
type='date'
),
yaxis=dict(
title=y_axis_label,
showticklabels= not seperate_y_axis,
autorange=True,
type='linear'
)
)

最佳答案

我认为现在在 plotly 中是不可能的(参见 https://community.plot.ly/t/range-slider-and-selector-in-plotly-js-without-fixed-y-axis/1475https://community.plot.ly/t/autoscaling-the-y-axis-when-using-rangeslider/1456 )

你必须使用 rangeslider 吗?也许不同的布局会起作用。

关于python - 如何在价格图表上自动调整 plotly Y 范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47247105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com