需要减少填充量

时间:2013-04-03 14:49:05

标签: highcharts padding

知道如何缩小图表填充范围吗?

enter image description here

2 个答案:

答案 0 :(得分:0)

是的 - 将图表的边距设置为0:

chart: {
  plotBackgroundColor: null,
  plotBorderWidth: null,
  plotShadow: false,
  margin: 0 // <---- change this number
}

(Live demo here)

答案 1 :(得分:0)