pyecharts背景图片
时间: 2023-08-13 21:46:42 浏览: 262
通过Python pyecharts输出保存图片代码实例
5星 · 资源好评率100%
你可以通过调用 `add()` 方法的 `graphic` 参数来设置 pyecharts 图表的背景图片,具体实现方法如下:
```python
from pyecharts import options as opts
from pyecharts.charts import Bar
bar = Bar()
bar.add_xaxis(['A', 'B', 'C', 'D', 'E'])
bar.add_yaxis('Series', [10, 20, 30, 40, 50])
bar.set_global_opts(
title_opts=opts.TitleOpts(title="Bar Chart with Background Image", subtitle=""),
graphic_opts=[
# 设置背景图片
opts.GraphicImage(
graphic_item=opts.GraphicItem(
id_="background",
right=0,
top=0,
width=200,
height=200,
bounding="raw",
z=10,
),
graphic_imagestyle_opts=opts.GraphicImageStyleOpts(
image="https://gallery.123rf.com/images/iimages/iimages1802/iimages180200155/96081277-%E5%8A%A8%E6%BC%AB%E5%B0%8F%E7%94%B5%E8%A7%86%E6%9C%BA%E5%8A%A8%E6%BC%AB%E5%B0%8F%E5%8A%A8%E7%89%A9%E8%83%8C%E6%99%AF%E5%9B%BE%E7%89%87%E8%BA%AB%E4%BB%BD%E7%A9%BA%E7%99%BD%E8%83%8C%E6%99%AF%E5%9B%BE%E7%89%87.jpg",
width=150,
height=150,
opacity=0.7,
),
),
]
)
bar.render('bar_chart_with_background_image.html')
```
其中,`graphic_opts` 参数接受一个列表,可以传入多个 `Graphic` 对象,即可实现在 pyecharts 图表上添加多个图形元素,其中包括背景图片、文本、图形等等。在上述代码中,我们通过 `GraphicImage` 对象来添加背景图片,其中 `graphic_item` 参数指定了该图片的位置、大小和层级信息,`graphic_imagestyle_opts` 参数则指定了该图片的具体样式,包括图片链接、尺寸、透明度等等。
阅读全文