我正在从事高等教育。在我的代码中,有时Y轴标题文本超过图表的高度。
实施例。我正在创建一个图表。在此图表中,高度为400px
,但我的Y轴标题文本很长,因此文本的某些部分不会显示。那我该怎么办?
答案 0 :(得分:0)
您可以在标题上设置宽度并调整边距。
yAxis: {
title: {
enabled: true,
text: 'Custom with <b>simple</b> <i>markup</i>Custom with <b>simple</b> <i>markup</i>Custom with <b>simple</b> <i>markup</i>Custom with <b>simple</b> <i>markup</i>',
margin: 40,
style: {
width: 200,
fontWeight: 'normal'
}
}
},