$(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を表示しているだけです...
縦棒グラフは、Highchartではcolumn
と呼ばれます。
これを変える:
type: 'column' //was 'bar' previously`
ここの例を参照してください: http://jsfiddle.net/aznBb/
Moin Zamanの答えをさらに詳しく説明するために、彼のjsfiddle http://jsfiddle.net/aznBb/ を試してみて、これを見つけました。
これはhorizontalです。
chart: {
type: 'bar',
inverted: false // default
}
これはまた水平です。
chart: {
type: 'bar',
inverted: true
}
これはverticalです。
chart: {
type: 'column',
inverted: false // default
}
これはhorizontalであり、明らかに棒グラフと同じです。
chart: {
type: 'column',
inverted: true
}
非常に奇妙な。推測できるのはtype: 'bar'
エイリアスtype: 'column'
と強制inverted: true
実際の設定に関係なく。 inverted
ブール値を切り替えただけでいいのですが。
あなたはこのようなものを試すべきです:
$(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]
]
}]
});
});