如何在简单的条形图上删除白色背景?

时间:2016-12-05 20:59:22

标签: highcharts

我正试图在简单的条形图上删除白色背景。

我试过

  • backgroundColor:null
  • backgroundColor:'rgba(255,255,255,0)'

似乎没有设置背景颜色。有任何想法吗? jsfiddle例子here

     $('#container').highcharts({
    credits: {
    enabled: false
  },
  backgroundColor: null,

1 个答案:

答案 0 :(得分:2)

您正尝试在根对象级别使用chart对象的设置。

将它们移到chart,然后你就完成了设置:

chart: {
  type: 'bar',
  spacing: [0, 0, 0, 0],
  backgroundColor: null
}

小提琴: