2

ハイチャートで列の幅をパーセンテージで設定する方法

options = {
        chart: {
            renderTo: 'container',
            type: 'column'
        },
        title: {
            text: 'Data extracted from a HTML table in the page'
        },
        xAxis: {
        },
        yAxis: {
            title: {
                text: 'Units'
            }
        },
        tooltip: {
            formatter: function() {
                return '<b>'+ this.series.name +'</b><br/>'+
                    this.y +' '+ this.x.toLowerCase()+''+this.percentage;
            }
        },
         plotOptions: {
            column: {
                pointWidth: 50
            }

        }
    };
4

1 に答える 1

1

残念ながら、パーセントポイント幅はサポートされていません。

于 2013-02-13T11:16:06.527 に答える