我正在使用一个 xAxis 类别和 4 个离散数据系列(每个系列都包含一个数据项)。不幸的是,当我尝试使用 Highcharts 3.0 beta 构建一个简单的 ColumnChart 时,图表永远不会显示:
chartB = new Highcharts.Chart({
chart: {
renderTo: 'containerB',
type: 'column'
},
title: {
text: 'Monthly Average Rainfall'
},
subtitle: {
text: 'Source: WorldClimate.com'
},
xAxis: {
categories: [
'Jan' //Just one category
]
},
yAxis: {
min: 0,
title: {
text: 'Rainfall (mm)'
}
},
legend: {
enabled: false
},
tooltip: {
formatter: function() {
return ''+
this.x +': '+ this.y +' mm';
}
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Tokyo',
data: [49.9] //One data point for each series element.
}, {
name: 'New York',
data: [83.6]
}, {
name: 'London',
data: [48.9]
}, {
name: 'Berlin',
data: [42.4]
}]
});
请参阅http://jsfiddle.net/7CJhf/5/。
一种解决方法是向每个系列项目附加一个空类别 ('') 和一个零值,但这会将列集移到左侧。是否有任何适当的解决方法可以使用单个数据点创建带有 Highcharts 3.0 beta 的柱形图?