Holoviews覆盖图具有不同的大小

时间:2019-05-23 21:25:23

标签: overlay bokeh holoviews

我正在尝试在holoviews中叠加3个和弦图。这些图的大小不同,因此在覆盖图上我可以区分它们,但是即使我单独设置它们的大小,它们在覆盖图上仍然变成相同的大小。

这是我解决问题的方法:

chord_L0.opts(opts.Chord(labels='Name', height=400, width=400))

chord_L1 = hv.Chord((edges_L1, nodes_L1), ['Source', 'Destination'],['Value'])
chord_L1.opts(opts.Chord(labels='Name', height=600, width=600))

chord_L2 = hv.Chord((edges_L2, nodes_L2), ['Source', 'Destination'],['Value'])
chord_L2.opts(opts.Chord(labels='Name', height=800, width=800))

chords = chord_L0 * chord_L1 * chord_L2
chords

有人可以帮忙吗?谢谢!

0 个答案:

没有答案