如何google柱形图传奇底部?

时间:2015-02-03 06:26:45

标签: javascript html charts

enter image description here

  1. 传奇位置'底部'
  2. 底部文字 - >垂直?
    ex)aaaa bbbb cccc
      - > a b c
     a b c
     a b c
     a b c

    var options = {    
        legend : {position:'bottom'}
    };
    
    var chart = new google.charts.Bar(document
            .getElementById('columnchart_material'));
    
    chart.draw(data, options);
    

2 个答案:

答案 0 :(得分:1)

Google在2017年对其进行了修复。您可以同时使用位置底部和顶部进行图例

var options = {
        'legend': 'bottom',
        };

var options = {
        'legend': 'top',
        };

答案 1 :(得分:0)

Bar Chatr有一些选项不能按预期工作,而且这是其中之一。

有关详细信息,请参阅此GitHub issue