0

我在使用 Highcharts 时遇到问题,其中每个条形图类别在水平排列中都太高了。

这是一个例子:

大小不正确的类别示例

用于生成图表的代码如下:

chart2 = new Highcharts.Chart({
        chart: {
          renderTo: 'wordchart1',
          defaultSeriesType: 'bar'
        },
        title: {
          text: 'Word Frequency Distribution'
        },
        xAxis: {
          categories: ['LIL POP SHOP','SWEET BOX','LITTLE BABY\'S ICE CREAM','SUGAR PHILLY','Please pick one:'              ],
          title: {
            text: ''
          }
        },
        yAxis: {
          min: 0,
          title: {
            text: 'Word Frequency Analysis',
            align: 'high'
          }
        },
        plotOptions: {
          bar: {
            dataLabels: {
              enabled: true
            }
          }
        },
        series: [{
          name: 'Word Frequency Analysis',
          data: [89,43,32,24,3              ]              }]
        });
      });

知道可能是什么问题吗?谢谢!

4

1 回答 1

0

您还可以定义pointWidth:http ://api.highcharts.com/highcharts#plotOptions.bar.pointWidth

于 2013-03-12T09:07:13.293 回答