pyecharts设置画布大小
时间: 2023-03-28 11:01:50 浏览: 2373
matlab设置画布大小代码-DesicionTree:决策树
可以使用 set_global_opts() 方法来设置画布大小,例如:
```python
from pyecharts.charts import Bar
bar = Bar()
bar.add_xaxis(['A', 'B', 'C'])
bar.add_yaxis('Y', [1, 2, 3])
bar.set_global_opts(title_opts={'text': 'Bar chart', 'subtext': 'example'},
toolbox_opts={'show': True},
legend_opts={'show': True},
xaxis_opts={'name': 'X'},
yaxis_opts={'name': 'Y'},
graphic_opts=[{'type': 'text', 'left': 'center', 'top': 'middle', 'style': {'text': 'pyecharts'}}],
width='800px',
height='600px')
bar.render('bar.html')
```
其中,width 和 height 参数可以设置画布的宽度和高度。
阅读全文