According to the documentation, Org Charts only support 3 columns: node ID, 
parent node ID, and tooltip text.

Do you need those columns when you actually draw the Org Chart, or are they 
for some control/other chart?  If you don't need them at the time you draw 
the chart, you can create a data view, and draw the chart with that instead:

var view = new google.visualization.DataView(data);
view.setColumns([0,1,2]);
var chart = new 
google.visualization.OrgChart(document.getElementById('chart_div'));
chart.draw(view, <options>);

-- 
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