How to set background color of the plot and color for gridlines?(如何设置绘图的背景颜色和网格线的颜色?)
本文介绍了如何设置绘图的背景颜色和网格线的颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码:
导入 plotly.graph_objectsfig = go.Figure()fig.add_trace(go.Bar(name='第 1 组',x=['Var 1', 'Var 2', 'Var 3'], y=[3, 6, 4],error_y=dict(type='data', array=[1, 0.5, 1.5]),宽度=0.15))fig.add_trace(go.Bar(名称='第 2 组',x=['Var 1', 'Var 2', 'Var 3'], y=[4, 7, 3],error_y=dict(type='data', array=[0.5, 1, 2]),宽度=0.15))fig.update_layout(barmode='组')图.show()
输出:
我阅读了
来源:
- 网格线自定义李>
- 背景自定义
Here is my code:
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Bar(
name='Group 1',
x=['Var 1', 'Var 2', 'Var 3'], y=[3, 6, 4],
error_y=dict(type='data', array=[1, 0.5, 1.5]),
width=0.15
))
fig.add_trace(go.Bar(
name='Group 2',
x=['Var 1', 'Var 2', 'Var 3'], y=[4, 7, 3],
error_y=dict(type='data', array=[0.5, 1, 2]),
width=0.15
))
fig.update_layout(barmode='group')
fig.show()
output:
I read this but code from seems depreciated and does not works.
Question: How to set background color of the plot and color for grid lines?
解决方案
This should help
import plotly.graph_objects as go
from plotly.graph_objects import Layout
# Set layout with background color you want (rgba values)
# This one is for white background
layout = Layout(plot_bgcolor='rgba(0,0,0,0)')
# Use that layout here
fig = go.Figure(layout=layout)
fig.add_trace(go.Bar(
name='Group 1',
x=['Var 1', 'Var 2', 'Var 3'], y=[3, 6, 4],
error_y=dict(type='data', array=[1, 0.5, 1.5]),
width=0.15
))
fig.add_trace(go.Bar(
name='Group 2',
x=['Var 1', 'Var 2', 'Var 3'], y=[4, 7, 3],
error_y=dict(type='data', array=[0.5, 1, 2]),
width=0.15
))
fig.update_layout(barmode='group')
# Change grid color and axis colors
fig.update_xaxes(showline=True, linewidth=2, linecolor='black', gridcolor='Red')
fig.update_yaxes(showline=True, linewidth=2, linecolor='black', gridcolor='Red')
fig.show()
Sources:
- Grid line customization
- Background Customization
这篇关于如何设置绘图的背景颜色和网格线的颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何设置绘图的背景颜色和网格线的颜色?


猜你喜欢
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01