pyecharts2.0.3中有ThemeType吗
时间: 2024-03-23 13:42:39 浏览: 63
mybatis-spring-2.0.3-API文档-中文版.zip
在Pyecharts 2.0.3中,ThemeType已经被废弃,取而代之的是ThemeType.CHALK和ThemeType.WESTEROS两个主题。您可以使用以下代码来选择其中一个主题:
```python
from pyecharts.globals import ThemeType
#选择CHALK主题
bar = Bar(init_opts=opts.InitOpts(theme=ThemeType.CHALK))
#选择WESTEROS主题
bar = Bar(init_opts=opts.InitOpts(theme=ThemeType.WESTEROS))
```
注意:使用 Pyecharts 2.0.3 版本时,需要将 `ThemeType` 导入 `pyecharts.globals` 中,而非 `pyecharts.commons`。
阅读全文