pyecharts柱状图颜色设置
时间: 2023-07-09 15:51:29 浏览: 119
基于echarts 3.8.4,tree图中,连线的颜色,可每条线独立设置
4星 · 用户满意度95%
你可以通过设置 `color` 参数来为柱状图设置颜色,具体方法如下:
```python
from pyecharts.charts import Bar
# 构造数据
x_data = ['苹果', '梨子', '香蕉', '葡萄', '西瓜']
y_data = [5, 3, 2, 4, 6]
# 创建 Bar 实例
bar = Bar()
# 添加数据系列并设置颜色
bar.add_xaxis(x_data)
bar.add_yaxis("", y_data, color="#c23531")
# 设置全局配置项
bar.set_global_opts(
title_opts={"text": "水果销量"},
xaxis_opts={"name": "水果"},
yaxis_opts={"name": "销量"},
)
# 渲染图表
bar.render("bar.html")
```
在上面的代码中,我们将柱状图的颜色设置为红色,具体是通过在 `add_yaxis` 方法中设置 `color` 参数来实现的。你也可以使用 RGB 值或者颜色名称来设置颜色。
阅读全文