如何隐藏谷歌条形图中的百分比图例

时间:2015-12-01 04:40:45

标签: javascript google-visualization

我在我的网站上使用谷歌条形图,我想隐藏百分比图例,但找不到可以做到这一点的设置。

这是我的图表和设置

enter image description here

optionsBar = {
            height      : 95,
            legend      : { position: 'none' },
            bar         : { groupWidth: '60%' },
            isStacked   : 'percent',
            backgroundColor: 'none',
            chartArea   : { left: 0, width: '100%'  },
            hAxis       : { baselineColor: 'none', gridlines: { color: 'none' } }
        };

2 个答案:

答案 0 :(得分:2)

我的解决方案设置为height = 70,图例将会隐藏,因为图表会更低,而且没有地方可以显示图例。

答案 1 :(得分:1)

如果我正确理解了您的问题,您希望隐藏x值。 我找到了一个解决方案here,其中说使用:

hAxis: { textPosition: 'none' }

希望这有帮助。