Google Visualization API - 将颜色设置为特定点

时间:2012-07-11 12:45:22

标签: javascript google-visualization

有人知道如何将特定颜色设置为图表上的某个点吗?

例如:

enter image description here

2 个答案:

答案 0 :(得分:2)

没有官方文档可以更改每个栏的颜色,但是有一个简单的技巧可以达到这个目的。您可以使用isStacked:true并重叠两个条形图。如果您只需要其他颜色,请使用第二个栏。

Final Output

<强>代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>

    <title>
      Google Visualization API Sample
    </title>
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">
      google.load('visualization', '1', {packages: ['corechart']});
    </script>
    <script type="text/javascript">
      function drawVisualization() {
        // Create and populate the data table.


        var data = new google.visualization.DataTable();
        // Add columns
        data.addColumn('string', 'Category');
        data.addColumn('number', 'value');
        data.addColumn('number','value');//Used for red bar

        data.addRows(5);
        data.setCell(0, 0, 'Category 1');
        data.setCell(0, 1, 4.25);
        data.setCell(1, 0, 'Category 2');
        data.setCell(1, 1, 2.5);
        data.setCell(2, 0, 'Category 3');
        data.setCell(2, 1, 3.5);
        data.setCell(3, 0, 'Category 4');

        data.setCell(3, 2, 4.5);//Used because we need red or other color bar
        data.setCell(4, 0, 'Category 5');
        data.setCell(4, 1, 3.75);



        // Create and draw the visualization.
        new google.visualization.ColumnChart(document.getElementById('visualization')).
          draw(data,{isStacked: true});
      }


      google.setOnLoadCallback(drawVisualization);
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <div id="visualization" style="width: 600px; height: 400px;"></div>
  </body>
</html>

您可以在此处查看快速演示http://jsfiddle.net/sXmzq/

答案 1 :(得分:0)

您必须声明要用于柱形图的所有颜色。没有理由不能将它们与['blue','blue','blue','red','blue']或者你有什么不同重复。

在“颜色”here下解释。