使用holoviews / hvplot更改图例位置

时间:2019-09-05 15:06:50

标签: python holoviews hvplot holoviz

Hvplot将图例的默认位置设置在图的外部。
如何更改此默认图例位置?

f

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以通过在代码中添加 .opts(legend_position ='top_left')来将图例位置更改为左上角。

df.hvplot.line().opts(legend_position='top_left')

如果您想在图中内部放置图例,则可以选择以下选项:

  

['top_right','top_left','bottom_left','bottom_right']

如果要将图例放置在之外,可以从以下选项中进行选择:

  

['right','left','top','bottom']

enter image description here