我想禁用或隐藏分配给Google折线图中不同颜色曲线的变量名称列表。
var options = {
curveType: 'function',
title: 'Profit Graph',
backgroundColor: {fill:'transparent'},
// option to disable color-variable mapping ??
};
var chart = new google.visualization.LineChart(document.getElementById('graph'));
chart.draw(data, options);
可选:如果可能,我希望能够使用回调函数自定义列表格式(附加数据)。
答案 0 :(得分:0)
由legend
选项控制。要隐藏它,你必须使用:
legend: {
position: 'none'
}
如何自定义?问题How to add Percentage and Total on the Legend of Google Pie Charts中描述了一种可能性。这是饼图,但解决方案也可以重新用于折线图。