如何在绘图图中打破长轴标签

时间:2019-04-29 11:48:19

标签: javascript d3.js bar-chart plotly axis-labels

我正在为图表使用plotly.js。我有y轴的动态标签。它在一行中显示全文,而我需要在多行中断开/包装标签文本。该怎么做?

预期结果:

enter image description here

实际结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

我的笔记本电脑也面临着同样的问题。我所做的非常简单。在定义DataFrame时,我使用了br(这是长文本中的HTML换行标记)来破坏它们。

这是输出:
this is the output

对于Ex-

concerns = pd.DataFrame({'Concerns':['Health and economic<br> impact on the<br> country', 
                                 'A member of my<br> family might contract<br> COVID-19',
                                 'Cost-cutting measures<br> that might impact<br> my compensation'],
                     'Percentage':[72, 61, 40]
                    })