AttributeError: 'Grid' object has no attribute 'set_global_opts'
时间: 2023-09-19 13:09:23 浏览: 509
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常表示你正在使用 Pyecharts 中的 Grid 组件,但是你尝试调用 set_global_opts() 方法,这个方法是在 Chart 组件中才有的。
如果你想设置全局配置项,可以使用:
```python
from pyecharts import options as opts
from pyecharts.charts import Page
page = Page()
chart = YourChart()
chart.set_global_opts(
title_opts=opts.TitleOpts(title="Your Chart Title"),
legend_opts=opts.LegendOpts(is_show=False),
...
)
page.add(chart)
page.render("your_chart.html")
```
这里的 Page 是用来管理多张图表的,你可以把所有的图表都加入到 Page 中,然后一次性渲染出来。
阅读全文