如何隐藏可绘制的yaxis标题(在python中?)>

问题描述 投票:1回答:1

编辑:

以下示例来自Plotly供参考:
import plotly.express as px

df = px.data.gapminder().query("continent == 'Europe' and year == 2007 and pop > 2.e6")
fig = px.bar(df, y='pop', x='country', text='pop')
fig.update_traces(texttemplate='%{text:.2s}', textposition='outside')
fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()

如何删除“ pop”一词。


我想隐藏'value'的y轴标题。

enter image description here以下语法不起作用。

fig.update_yaxes(showticklabels=False)

谢谢。

编辑:以下示例来自Plotly以供参考:import plotly.express as px df = px.data.gapminder()。query(“ continent =='Europe'and year == 2007 and pop> 2.e6”)图= px.bar(df,y ='...

python plotly
1个回答
1
投票
fig.update_yaxes(visible=False, showticklabels=False)
© www.soinside.com 2019 - 2024. All rights reserved.