对于我的生活,即使我指定“无”,我也无法显示Google图表图例。 (此处还注明:Hiding the legend in Google Chart)。
$options = array( 'title' => 'Average Load Summary',
'titlePosition' => 'in',
'legend.position' => 'none',
'width' => 1100,
'height' => 700,
'hAxis.slantedTextAngle' => 90,
'hAxis.position' => 'out',
'pointSize' => 5,
'hAxis.title' => 'Stops');
此外,我不能让倾斜的文字角度变为水平(90度),这样我的整个标签就会显示出来。现在谷歌在我的标签上添加了“......”,它们的角度大约为45度。最后,我也无法显示hAxis.title
或vAxis.title
,无论是什么......
感谢任何人的帮助。顺便说一下,这是 lineChart ......
答案 0 :(得分:4)
你有这个:
'legend.position' => 'none',
尝试这样做:
'legend' => array('position' => 'none'),
对于另一个:
'hAxis' => array('title' => 'Stops', 'position' => 'out', 'slantedTextAngle' => 90),
基本上,图例和hAxis接受多个参数,因此每个参数都有自己的选项数组。宽度和高度只有一个参数。
在javascript中它看起来像这样:
var options = {
title: 'Average Load Summary'
,legend: {position: 'none'}
};