plot.ly Hover Box Size属性

时间:2016-03-24 18:51:26

标签: python hover plotly

我使用plot.ly Python api并且无法弄清楚如何调整阴谋悬停框尺寸的大小。

例如,在下面的可视化中, CollegeClass .... 的标签被截断。我想调整悬停框中字符串的长度。

enter image description here

2 个答案:

答案 0 :(得分:1)

你可能找到了答案,但是:

通过设置'text'并将其传递给您的hoverinfo。 在您的示例中,如果您设置text ='CollegeClass'并设置您的hoverinfo ='text',您将获得您期望的结果。 当您传递的文本或标签不是时,似乎会截断跟踪的名称。

data = [
go.Scatter(
    x=[0, 1, 2],
    y=[1, 3, 2],
    mode='markers',
    text=['Text A', 'Text B', 'Text C']
    hoverinfo = 'text'
)]

https://plot.ly/python/text-and-annotations/#adding-hover-text-to-data-in-line-and-scatter-plots 复制 在我的情况下,我不得不设置hoverinfo ='text'而在示例中似乎没有。

答案 1 :(得分:0)

我可能迟到了,但我发现了一个连击解决方案 将hoverlabel: {namelength :-1}添加到我的跟踪对象中就可以了。

来自Here