如何减少购物车周围的区域?

时间:2018-07-18 18:51:30

标签: highcharts

我有一个高图散点图,其高度设置为37px,宽度为125px。对于这些尺寸,由于背景原因,实际图表尺寸要小得多。有没有一种方法可以使图表在没有背景的情况下填充整个内容区域?

这是具有类似设置的图表。

http://jsfiddle.net/6Ljrk87o/2/

{
    inverted: true,
    type: 'scatter'
},
margin: [0, 0, 0, 0],
title: {
    text: null
},

谢谢!

enter image description here

1 个答案:

答案 0 :(得分:1)

要减少Highcharts图表周围的区域,请减小间距。

chart: {
  spacing: [0, 0, 0, 0]
}

实时演示:http://jsfiddle.net/BlackLabel/5p1k4d2h/

API参考:https://api.highcharts.com/highcharts/chart.spacing