画雷达图我的pyecharts中没有 set_split_number方法
时间: 2024-05-08 14:20:53 浏览: 101
如果您使用的是较早版本的 Pyecharts(v0.x),则没有 `set_split_number` 方法。您可以使用 `set_tick_count` 方法来设置分割线的数量,例如:
```python
from pyecharts import options as opts
from pyecharts.charts import Radar
radar = (
Radar()
.add_schema(
schema=[
opts.RadarIndicatorItem(name="销售", max_=6500),
opts.RadarIndicatorItem(name="管理", max_=16000),
opts.RadarIndicatorItem(name="技术", max_=30000),
opts.RadarIndicatorItem(name="客服", max_=38000),
opts.RadarIndicatorItem(name="研发", max_=52000),
opts.RadarIndicatorItem(name="市场", max_=25000),
]
)
.add(
series_name="预算 vs 开销(Budget vs spending)",
data=[
[4300, 10000, 28000, 35000, 50000, 19000],
[5000, 14000, 28000, 31000, 42000, 21000],
],
linestyle_opts=opts.LineStyleOpts(color="#f9713c"),
)
.set_series_opts(label_opts=opts.LabelOpts(is_show=False))
.set_global_opts(
legend_opts=opts.LegendOpts(),
tooltip_opts=opts.TooltipOpts(trigger="axis", axis_pointer_type="cross"),
# 设置分割线数量
radar_opts=opts.RadarOpts(split_number=4),
)
)
radar.render("radar.html")
```
如果您使用的是较新版本的 Pyecharts(v1.x),则可以使用 `set_split_number` 方法来设置分割线的数量,例如:
```python
from pyecharts import options as opts
from pyecharts.charts import Radar
radar = (
Radar()
.add_schema(
schema=[
opts.RadarIndicatorItem(name="销售", max_=6500),
opts.RadarIndicatorItem(name="管理", max_=16000),
opts.RadarIndicatorItem(name="技术", max_=30000),
opts.RadarIndicatorItem(name="客服", max_=38000),
opts.RadarIndicatorItem(name="研发", max_=52000),
opts.RadarIndicatorItem(name="市场", max_=25000),
]
)
.add(
series_name="预算 vs 开销(Budget vs spending)",
data=[
[4300, 10000, 28000, 35000, 50000, 19000],
[5000, 14000, 28000, 31000, 42000, 21000],
],
linestyle_opts=opts.LineStyleOpts(color="#f9713c"),
)
.set_series_opts(label_opts=opts.LabelOpts(is_show=False))
.set_global_opts(
legend_opts=opts.LegendOpts(),
tooltip_opts=opts.TooltipOpts(trigger="axis", axis_pointer_type="cross"),
# 设置分割线数量
radar_opts=opts.RadarOpts(split_number=4),
)
)
radar.render("radar.html")
```
阅读全文