设置堆积条的颜色(谷歌图表)

时间:2015-03-29 21:05:41

标签: javascript charts google-visualization

使用谷歌图表我试图自定义this堆积栏上某些部分的颜色

$(function() {
    google.load('visualization', '1', { 'callback': drawChart, 'packages': ['corechart'] });
        function drawChart() {
            var data = google.visualization.arrayToDataTable([
                  ['Grade', 'NG (% of total Results)', 'F (% of total Results)', 'E (% of total Results)', 'D3 (% of total Results)',
                   'D2(% of total Results)', 'D1 (% of total Results)','C3 (% of total Results)','C2 (% of total Results)','C1 (% of total Results)', 'B3 (% of total Results)','B2 (% of total Results)', 'B1 (% of total Results)','A2 (% of total Results)', 'A1 (% of total Results)',  { role: 'annotation' } ],
                  ["English", 5, 5, 5,5, 5, 5, 5, 5,5, 5,5, 5,5 ,35, ''],                   //use german[2] index of variables for each percent
                  ["Maths", 5, 5, 5,5, 5, 5, 5, 5,5, 5,5, 5,20 ,20, '']
                ]);

            var view = new google.visualization.DataView(data);
                var options = {
                  width: 600,
                  height: 400,
                  legend: { position: 'none'},
                  bar: { groupWidth: '75%' },
                  colors: ['#dfdfdf','#d4d4d4','#d2d2d2','#d8d8d8','#e3e3e3','#d4d4d4','#dcdcdc','d7d7d7','dadada','d9d9d9','d6d6d6'],
                  isStacked: true,
                  hAxis: { 
                        viewWindowMode:'explicit',
                        viewWindow: {
                            max:101,
                            min:0
                        }
                    },
                 chartArea: {'height': '90%'}
                };

                var chart = new google.visualization.BarChart(document.getElementById("columnchart_values"));
                chart.draw(view, options);
}

我想更改每个栏上一个部分的颜色,例如英语上的35值和数学上的最后20个值。我无法使用样式角色列对其进行硬编码,因为我需要根据用户信息对颜色进行颜色更改。我尝试了以下几种方式无济于事。谢谢。

data.setProperty(0,0,{                          
    type: "string",
    role: "style" }, 'red');

1 个答案:

答案 0 :(得分:0)

我认为这里的问题是你有14个不同的系列和2行。 如果您尝试使用类似series: { 4: { color: "blue"}}之类的系列进行样式设置,则会更改两个行的系列颜色。

如果您尝试将新列添加到数据中,以便进行样式设置:

        var data = google.visualization.arrayToDataTable([
              ['Grade', 'NG (% of total Results)', 'F (% of total Results)', 'E (% of total Results)', 'D3 (% of total Results)',
               'D2(% of total Results)', 'D1 (% of total Results)','C3 (% of total Results)','C2 (% of total Results)','C1 (% of total Results)', 'B3 (% of total Results)','B2 (% of total Results)', 'B1 (% of total Results)','A2 (% of total Results)', 'A1 (% of total Results)',  { role: 'annotation' }, {type: 'string', role: 'style'} ],
            ["English", 5, 5, 5,5, 5, 5, 5, 5,5, 5,5, 5,5 ,35, '', 'color: #cfc'],                   //use german[2] index of variables for each percent
            ["Maths", 5, 5, 5,5, 5, 5, 5, 5,5, 5,5, 5,20 ,20, '', 'color: #0f0']
            ]);

        data.setCell(1,16, "color: red");

您只能在不控制哪一列的情况下为该行设置样式。

Output

这些都不是你想要的。我的直觉是,数据实际上并没有以适用于此的方式进行格式化,但我目前没有任何想法。我想我会告诉你我能做什么,也许这足以让你走上正轨,即使我看不出那是什么。