I have built a giant org chart in R by using gvisOrgchart. My data has values and the parents.
When I run the following script:
Org1 <- plot(gvisOrgChart(data, idvar = "value", parentvar = "parent",
tipvar="rand", options=list(width=100, height=100,allowCollapse=TRUE)))
I get a huge horizontal org chart. My question is below:
- How can I change the orientation to horizontal?
- Is there any other way except using googleVis in order to build org charts in R?
- How to change distances between the boxes and the size of the text?
Thanks in advance!!