Google折线图:禁用分配给颜色的变量名称列表

时间:2014-04-13 09:39:23

标签: javascript graph google-visualization

我想禁用或隐藏分配给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);

可选:如果可能,我希望能够使用回调函数自定义列表格式(附加数据)。

 List of Variable names assigned for colors

1 个答案:

答案 0 :(得分:0)

legend选项控制。要隐藏它,你必须使用:

        legend: {
            position: 'none'
        }

如何自定义?问题How to add Percentage and Total on the Legend of Google Pie Charts中描述了一种可能性。这是饼图,但解决方案也可以重新用于折线图。