Highcharts Y轴标题文字长度超过图表的高度

时间:2015-04-28 11:21:12

标签: javascript jquery jsp highcharts

我正在从事高等教育。在我的代码中,有时Y轴标题文本超过图表的高度。

实施例。我正在创建一个图表。在此图表中,高度为400px,但我的Y轴标题文本很长,因此文本的某些部分不会显示。那我该怎么办?

see in jsfiddle

1 个答案:

答案 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'
            }
        }
    },

示例:http://jsfiddle.net/EUSVQ/12/