7

このような棒グラフでは、棒の幅を変更して別のデータ属性 (果物の重さなど) を表すことができます。果実が重いほど、バーは太くなります。

ここでスクリプトを操作します。私は、無料である限り、それを行うことができる他の JavaScript プロット ライブラリに対してオープンです。

$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'column'
            },
            title: {
                text: 'Column chart with negative values'
            },
            xAxis: {
                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
            },
            tooltip: {
                formatter: function() {
                    return ''+
                        this.series.name +': '+ this.y +'';
                }
            },
            credits: {
                enabled: false
            },
            series: [{
                name: 'John',
                data: [5, 3, 4, 7, 2]
                // I would like something like this (3.5, 6 etc is the width) :
                // data: [[5, 3.4], [3, 6], [4, 3.4], [7, 2], [2, 5]]
            }, {
                name: 'Jane',
                data: [2, -2, -3, 2, 1]
            }, {
                name: 'Joe',
                data: [3, 4, 4, -2, 5]
            }]
        });
    });

});​
4

4 に答える 4

39



pointWidth バーの幅を設定するために必要なものです。試す

plotOptions: {
            series: {
                pointWidth: 15
            }
        }


これは幅 15px のバーを表示します。ここで遊んでください。既存のコードを編集しただけです。

于 2012-10-30T07:37:39.390 に答える