为什么我不能在Python中的plotly中使条之间的距离为0?我正在使用 BARGAP=0 因为我从这个网站找到了这个解决方案,但它不起作用。知道为什么吗?
layout = Layout(
paper_bgcolor='rgb(255,255,255)',
plot_bgcolor='rgb(255,255,255)'
)
fig = go.Figure(data=traces, layout=layout).update_traces(width=0.9)
fig.update_layout(bargap=0.0, bargroupgap=0.0)
我认为这是因为你有.update_traces(width=0.9)。这是一个条形之间没有间隙的示例。
import plotly.graph_objects as go
animals=['giraffes', 'orangutans', 'monkeys']
fig = go.Figure([go.Bar(x=animals, y=[20, 14, 23])])
fig.update_layout(bargap=0.0, bargroupgap=0.0)
fig.show()