如何使高图蜘蛛图的标题空白消失?

时间:2019-06-01 08:43:14

标签: highcharts

例如:

https://jsfiddle.net/zvj2nmyk/

Highcharts.chart('container', {

    chart: {
        polar: true,
        type: 'line'
    },

    title: {
        text:null // Already hide this but still occupy a lot of space at the top of my chart
    },
...
}

在这段代码中,我删除了图表的标题部分,但图表顶部仍然有很多空白。

如何删除顶部空间?

谢谢

1 个答案:

答案 0 :(得分:1)

空格不是来自标题,而是来自panelegend。此选项将更改渲染:

pane: {
  // size: '60%'
},
legend: {
  enabled:false,
},

Fiddle