Skip to content

Instantly share code, notes, and snippets.

@rajarshi
Created November 14, 2008 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajarshi/24769 to your computer and use it in GitHub Desktop.
Save rajarshi/24769 to your computer and use it in GitHub Desktop.
var data = new google.visualization.DataTable();
data.addColumn(’string’, ‘Solvent’);
data.addColumn(’number’, ‘Conc (M)’);
data.addRows(5);
data.setValue(0, 0, ‘thf’);
data.setValue(0, 1, 1.23);
data.setValue(1, 0, ‘acetonitrile’);
data.setValue(1, 1, 2.34);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment