30

在此处输入图像描述

$(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...

4

3 回答 3

61

垂直条形图column在 Highchart 中称为 's。

改变这个:

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

请参阅此处的示例:http: //jsfiddle.net/aznBb/

于 2012-06-27T22:05:24.050 回答
17

为了扩展 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布尔值会很好。

于 2014-02-12T21:14:49.427 回答
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]
        ]
    }]

});

});

http://jsfiddle.net/b940oyw4/

于 2017-01-11T15:16:02.530 回答