yes it is...
the org chart uses a datatable in the format of name, manager name and
tooltip
so, for your demo it should look like
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('string', 'Manager');
data.addColumn('string', 'ToolTip');
data.addRow(['x','','x']);
data.addRow(['?','x','']);
data.addRow(['v','x','v']);
data.addRow(['a','?','a']);
data.addRow(['b','?','a']);
data.addRow(['c','?','a']);
data.addRow(['y','a','y']);
On Fri, Nov 18, 2011 at 10:48 PM, dia salai <[email protected]> wrote:
> is it possible to have a org chart like this
>
> x
> |
> |-v
> |
> __|__
> | | |
> a b c
> |
> y
>
> --
> 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.
>
>
--
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.