pyecharts 桑基图 节点位置 调整 对应pyecharts版本
时间: 2023-09-29 13:11:22 浏览: 174
在 Pyecharts V1.x 版本中,可以通过 `sankey_node_pos` 参数来调整桑基图中节点的位置。该参数需要传入一个字典,字典的 key 为节点的名称,value 则为该节点的位置坐标。具体使用方法如下:
```python
from pyecharts.charts import Sankey
nodes = [
{"name": "category1"},
{"name": "category2"},
{"name": "category3"},
{"name": "category4"},
{"name": "category5"},
{"name": "category6"}
]
links = [
{"source": "category1", "target": "category2", "value": 10},
{"source": "category2", "target": "category3", "value": 15},
{"source": "category3", "target": "category4", "value": 20},
{"source": "category5", "target": "category6", "value": 25}
]
sankey = Sankey()
sankey.add(series_name="sankey", nodes=nodes, links=links, sankey_node_width=20,
sankey_node_gap=10, sankey_link_opacity=0.5, sankey_layout_iterations=32,
is_label_show=True, label_pos="right", sankey_node_pos={"category5": [500, 100]})
sankey.render("sankey.html")
```
在上面的例子中,我们将“category5”这个节点的位置坐标调整到了 [500, 100] 的位置。你可以根据具体需求,调整其他节点的位置坐标。
阅读全文