pyecharts更改图例字体大小
时间: 2023-04-04 17:02:38 浏览: 615
字体大小修改
4星 · 用户满意度95%
可以通过修改图例的 textStyle 属性来更改图例字体大小,具体代码如下:
```python
from pyecharts import options as opts
from pyecharts.charts import Line
line = Line()
line.add_xaxis(['A', 'B', 'C', 'D', 'E'])
line.add_yaxis('数据', [10, 20, 30, 40, 50])
line.set_global_opts(
legend_opts=opts.LegendOpts(textstyle_opts=opts.TextStyleOpts(font_size=20))
)
line.render('line.html')
```
在上面的代码中,我们通过 `legend_opts` 参数来设置图例的属性,其中 `textstyle_opts` 参数用于设置图例文本的样式,我们通过 `font_size` 属性来设置字体大小为 20。
阅读全文