web-dev-qa-db-ja.com

HighCharts棒グラフを回転して、水平ではなく垂直にするにはどうすればよいですか?

enter image description here

$(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を表示しているだけです...

26
John Zumbrum

縦棒グラフは、Highchartではcolumnと呼ばれます。

これを変える:

type: 'column' //was 'bar' previously`

ここの例を参照してください: http://jsfiddle.net/aznBb/

51
Moin Zaman

Moin Zamanの答えをさらに詳しく説明するために、彼のjsfiddle http://jsfiddle.net/aznBb/ を試してみて、これを見つけました。

これはhorizo​​ntalです。

chart: {
    type: 'bar',
    inverted: false // default
}

これはまた水平です。

chart: {
    type: 'bar',
    inverted: true
}

これはverticalです。

chart: {
    type: 'column',
    inverted: false // default
}

これはhorizo​​ntalであり、明らかに棒グラフと同じです

chart: {
    type: 'column',
    inverted: true
}

非常に奇妙な。推測できるのはtype: 'bar'エイリアスtype: 'column'と強制inverted: true実際の設定に関係なく。 invertedブール値を切り替えただけでいいのですが。

14
StevenClontz

あなたはこのようなものを試すべきです:

$(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]
        ]
    }]

});

});

http://jsfiddle.net/b940oyw4/

1