pyecharts怎么设置图例配置项
时间: 2023-09-21 11:07:59 浏览: 100
要设置Pyecharts图表的图例配置项,可以使用`legend`属性。以下是设置图例配置项的示例代码:
```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 1", [10, 20, 30, 40, 50])
bar.add_yaxis("Series 2", [20, 30, 40, 50, 60])
bar.set_global_opts(
legend_opts=opts.LegendOpts(
is_show=True, # 是否显示图例,默认为True
orient="horizontal", # 图例布局方向,可选值有horizontal和vertical,默认为horizontal
pos_top="10%", # 图例距离容器顶部的距离,默认为auto
pos_left="center", # 图例距离容器左边的距离,默认为center
item_gap=20, # 图例每项之间的距离,默认为20
selected_mode="multiple" # 图例选择模式,可选值有single、multiple和False,默认为False
)
)
bar.render()
```
在上述示例中,我们设置了图例的一些配置项,例如是否显示图例,图例的布局方向、位置、每项之间的距离以及选择模式等。您可以根据自己的需求自定义图例的配置项。
阅读全文