Google Visualization :: Rhizosphere

Rhizosphere accessed via the Google Visualization APIs.
Demonstrates how you can use Rhizosphere in the same way you do with other standard Google Visualizations. Learn more.

This page contains 3 visualizations compatible with the Google Visualization API: Rhizosphere, a Google Visualization Table and a Google Visualization Scatterchart. All of them are initialized from the same google.visualization.DataTable, which you can see here.

      var data = new google.visualization.DataTable();
      data.addColumn('string', 'Name', 'name');
      data.addColumn('number', 'Age', 'age');
      data.addColumn('number', 'Weight', 'weight');
      data.addColumn('string', 'Gender', 'gender');
      data.addRows([
          ['Bob', 8, 12, 'male'],
          ['Alice', 4, 5.5, 'female'],
          ['Mary', 11, 14, 'female'],
          ['Mark', 4, 4.5, 'male'],
          ['Victoria', 3, 3.5, 'female'],
          ['Robert', 6.5, 7, 'male'],
          ['Paul', 13, 16, 'male'],
          ['Jenny', 7, 9, 'female'],
          ['Dorothy', 10, 9, 'female'],
          ['Marcel', 9.5, 15, 'male'],
          ['Sara', 15, 18, 'female']
      ]);