$(document).ready(function() {
chart1 = new Highcharts.Chart({
chart: {
renderTo: 'QueryResultsChart',
type: 'bar'
},
title: {
text: 'Production History'
},
xAxis: {
title: {
text: 'Production Day'
},
type: 'datetime'
},
yAxis: {
title: {
text: 'Gross Production'
}
},
series: [{
name: 'Data',
data: []
}]
});
chart1.series[0].setData(". json_encode($aChartData) .");
});
数据是正确的,它只是出于某种原因在yAxis上显示我的xAxis ......
答案 0 :(得分:50)
垂直条形图在Highchart中称为column
。
改变这个:
type: 'column' //was 'bar' previously
请参阅此处的示例:http://jsfiddle.net/aznBb/
答案 1 :(得分:14)
为了扩展Moin Zaman的答案,我和他的jsfiddle http://jsfiddle.net/aznBb/一起玩,发现了这个。
这是水平。
chart: {
type: 'bar',
inverted: false // default
}
也是水平的。
chart: {
type: 'bar',
inverted: true
}
这是垂直。
chart: {
type: 'column',
inverted: false // default
}
这是水平,显然与条形图相同。
chart: {
type: 'column',
inverted: true
}
很奇怪。我只能猜测type: 'bar'
别名type: 'column'
和强制inverted: true
,无论它实际设置的是什么。如果只是切换inverted
布尔值,那就太好了。
答案 2 :(得分:1)
你应该尝试这样的事情:
$(function () {
Highcharts.chart('container', {
chart: {
type: 'columnrange',
inverted: false
},
title: {
text: 'Temperature variation by month'
},
subtitle: {
text: 'Observed in Vik i Sogn, Norway'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Temperature ( °C )'
}
},
tooltip: {
valueSuffix: '°C'
},
plotOptions: {
columnrange: {
dataLabels: {
enabled: true,
formatter: function () {
return this.y + '°C';
}
}
}
},
legend: {
enabled: false
},
series: [{
name: 'Temperatures',
data: [
[-9.7, 9.4],
[-8.7, 6.5],
[-3.5, 9.4],
[-1.4, 19.9],
[0.0, 22.6],
[2.9, 29.5],
[9.2, 30.7],
[7.3, 26.5],
[4.4, 18.0],
[-3.1, 11.4],
[-5.2, 10.4],
[-13.5, 9.8]
]
}]
});
});