Hi,

let me fix my last answer.

This can be done now using formatted value.
You can write:

  var data = new google.visualization.DataTable();
  data.addColumn('string', 'Name');
  data.addColumn('string', 'Manager');
  data.addRows(3);

  data.setCell(0, 0, 'Alice');
  data.setCell(0, 1, 'ecilA');

  data.setCell(1, 0, 'Bob D. Sponge', 'Bob Sponge');
  data.setCell(1, 1, 'Alice');

  data.setCell(2, 0, 'Bob E. Sponge', 'Bob Sponge');
  data.setCell(2, 1, 'Alice');

This works because the orgchart uses
the actual value to distinguish between
the nodes,
but shows the formatted value.

Hope that helps.

BugChart.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to