如何动态地将行/列添加到Google柱形图

时间:2012-09-13 22:29:28

标签: javascript google-api visualization

我想创建一个柱形图,使用Google Visualization API,我可以发送数据以数组形式填充图表的DataTable。但我需要生成具有可变数量的列/行的图表,具体取决于我的数组包含的内容,我不知道如何正确迭代它们并将它们添加到DataTable。

以下是解析STATIC数据以生成图表的示例: (这一切都在javascript中)

var data = google.visualization.arrayToDataTable([
      ['Year', 'Sales', 'Expenses'],
      ['2004',  1000,      400],
      ['2005',  1170,      460],
      ['2006',  660,       1120],
      ['2007',  1030,      540]
    ]);

API具有以下用于添加列和行的方法: - 获得与上述相同数据的不同方法:

var data = new google.visualization.DataTable();
data.addColumn('string', 'Year');
data.addColumn('number', 'Sales');
data.addColumn('number', 'Expenses');
data.addRows([  ['2004', 1000 , 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007',1030,540]
  ]);

我需要的是for循环或双for循环来迭代我发送的arraylists并动态添加行内容。

更准确地说,在一种情况下我会说上面写的数据,而在其他情况下我会有 这个:

['Year', 'Sales', 'Expenses' , 'Other'],
['2004',  1000,      400     ,  232   ],
['2005',  1170,      460    ,  421   ],
['2006',  660,       1120    ,  4324  ],
['2007',  1030,      540     ,  4234  ],
['2008',  1530,      50     ,    234  ],

所以我会通过函数中的参数来解析这些数据,让我们说(我不知道这是否是正确的想法)许多包含每一行的arraylists:Row1 = ['2004',1000,400,232] Row2 = ['2005',1170,460,421]和....

如何使用for循环或double for循环来迭代我发送到动态生成包含数据的数据表(包含可变数量的行和列)的arraylists?

3 个答案:

答案 0 :(得分:22)

这是jsfiddle中的工作解决方案。

查看以下功能。这会迭代一组数据并更新图表:

// function to update the chart with new data.
      function updateChart() {

          dataTable = new google.visualization.DataTable();

          var newData = [['Year', 'Sales', 'Expenses' , 'Other'],
            ['2004',  1000,      400     ,  232   ],
            ['2005',  1170,      460    ,  421   ],
            ['2006',  660,       1120    ,  4324  ],
            ['2007',  1030,      540     ,  4234  ],
            ['2008',  1530,      50     ,    234  ]];

          // determine the number of rows and columns.
          var numRows = newData.length;
          var numCols = newData[0].length;

          // in this case the first column is of type 'string'.
          dataTable.addColumn('string', newData[0][0]);

          // all other columns are of type 'number'.
          for (var i = 1; i < numCols; i++)
            dataTable.addColumn('number', newData[0][i]);           

          // now add the rows.
          for (var i = 1; i < numRows; i++)
            dataTable.addRow(newData[i]);            

          // redraw the chart.
          chart.draw(dataTable, options);        

      }

答案 1 :(得分:1)

var obj = JSON.parse(r.d);//Json data will come from any web service or any other source
 var data2 = new google.visualization.DataTable();    
 //To Add Column Dynamically

    for (var j = 0; j < array.length; j++) // this array contains columns
     {
      if (j == 0)
      {
          data2.addColumn(typeof (array[j]), array[j]);
      }
     else
       {
          data2.addColumn('number', array[j]);//if 2nd column must be integer
       } 
    }   
     //   To Add Rows Dynamically to a google chart  

                 data2.addRows(obj.length);\\Total Rows
                     for (var i = 0; i < obj.length; i++)
                     {
                        for (var k = 0; k < array.length; k++)//Total Column 
                         {
                           if (k == 0) 
                             {
                               data2.setCell(i, k, obj[i][array[k]].toString());//if first Column is String
                             } 
                              else
                             {
                               data2.setCell(i, k, parseInt([obj[i][array[k]]]));//if other columns are int type... for charts mostly we treat just first column as string
                             }
                         }
                    }

答案 2 :(得分:0)

您可以将数据放在一个字符串中并使用JSON.parse(stringData)。年份列必须是双引号

var data = new google.visualization.DataTable();  
data.addColumn('string', 'Year');  
data.addColumn('number', 'Sales'); 
data.addColumn('number', 'Expenses'); 

var stringData = '[["2004", 1000 , 400], ["2005", 1170, 460], ["2006", 660, 1120], ["2007",1030,540]]';

data.addRows(JSON.parse(stringData));