1

我只有一个系列的以下代码。由于我正在使用的数据,我无法添加另一个系列 - 我面临的挑战是用不同颜色设置条形图上的条形。有什么建议么?

var options = {
title:selVal + ': Electricity Consumption Yearly % Change',
legend:{alignment:'center', position:'bottom'},
vAxis:{title:'Yearly % Change', format:'#,###%'},
seriesType: "bars",
width:600, 
height:300
};
4

2 回答 2

1
var options = {
          legend: 'none',
          series: {
            0: { color: '#e2431e' },
            1: { color: '#e7711b' },
            2: { color: '#f1ca3a' },
            3: { color: '#6f9654' },
            4: { color: '#1c91c0' },
            5: { color: '#43459d' },
          }
        };
于 2017-03-20T07:25:52.153 回答
0

您可以通过在选项中提供一组颜色来提供多种颜色

var options = {
title:selVal + ': Electricity Consumption Yearly % Change',
legend:{alignment:'center', position:'bottom'},
vAxis:{title:'Yearly % Change', format:'#,###%'},
seriesType: "bars",
width:600, 
height:300,
colors: ["red","blue","green"]
};
于 2013-01-08T10:28:52.567 回答