我想在谷歌图表工具AngularJS中显示hAxis上的网格线。这是我的代码:
$scope.donneesGraphe = {};
$scope.dataGraphe.type = 'LineChart';
$scope.dataGraphe.data = {
"cols": myCols,
"rows": myRows
};
$scope.dataGraphe.options = {
title: "",
pointSize: 6,
pointShape: 'round',
hAxis: {
title: 'Tiempo (hora)',
gridlines: {
color: '#F00'
}
},
vAxis: {
title: 'Distancia (km)',
gridlines: {
color: '#F00'
}
}
};
我只看到vAxis上的网格线。
我使用的版本:0.0.8
先谢谢你了。
1条答案
按热度按时间wecizke31#
我找到了答案。
hAxis.gridlines
,此选项仅支持连续轴。Customizing Axes: