您好,我正在运行此图,并且想增加 Y 刻度轴频率 ......
fig3 = px.bar(x=area_price.index, y=area_price.values, title='معدل السعر للحي ',
color_discrete_sequence=['white', 'blue'], text=area_price.values,
template='plotly_dark')
fig3.update_traces(texttemplate='$%{text:,.85u6y2%f}', textposition='outside')
fig3.update_yaxes(title='Sale Price', tickprefix ='$', tickformat='1,2')
fig3.update_xaxes(title='Zoning')
fig3.update_layout( uniformtext_minsize=2 , uniformtext_mode='hide')
fig3.show()
...... 我用 px.bar 尝试了上图,图表返回的 Y 轴只有 0 , 2, 4 ..如何增加 Y 轴上的频率
dtick
:
fig3.update_yaxes(title='Sale Price', dtick=1, tickprefix ='$', tickformat='1,2')