我正试图在简单的条形图上删除白色背景。
我试过
似乎没有设置背景颜色。有任何想法吗? jsfiddle例子here
$('#container').highcharts({
credits: {
enabled: false
},
backgroundColor: null,
答案 0 :(得分:2)
您正尝试在根对象级别使用chart
对象的设置。
将它们移到chart
,然后你就完成了设置:
chart: {
type: 'bar',
spacing: [0, 0, 0, 0],
backgroundColor: null
}
小提琴: