Hi,
How to create organizational chart dinamically like below. When reporting authority change it should be change with photo and name and Designation
Organization Chart (Hierarchy)
this message
https://goo.gl/JmNrRz
https://communities.sas.com/t5/SAS-Visual-Analytics/Organization-Chart-Hierarchy/m-p/348027
If you have IML/R interface you can just cut and paste the code into IML.
You need an internet connection for this. Because Google uses adobe flash
it is very difficult programatically save a static image.
I was unable to create a static png. I had to manually use print screen.
If you have SAS/OR
https://goo.gl/UC63dp
http://support.sas.com/documentation/cdl/en/orpmug/66109/HTML/default/viewer.htm#orpmug_netdraw_examples15.htm
GOOGLE
https://cran.r-project.org/web/packages/googleVis/vignettes/googleVis_examples.html
%utlfkil(d:/htm/orgcht.html);
%utl_submit_r64('
source("c:/Program Files/R/R-3.3.2/etc/Rprofile.site",echo=T);
library(googleVis);
demo(googleVis);
Org <- gvisOrgChart(Regions,
options=list(width=600, height=250,
size="large", allowCollapse=TRUE));
print(Org, file="d:/htm/orgcht.html");
');
Welcome to googleVis version 0.6.2
Please read Google's Terms of Use
before you start using the package:
https://developers.google.com/terms/
Note, the plot method of googleVis will by default use
the standard browser to display its output.
See the googleVis package vignettes for more details,
or visit http://github.com/mages/googleVis.
To suppress this message use:
suppressPackageStartupMessages(library(googleVis))
I don't think there is any reporting object in VA to do organisation charts. The alternative is to paste in an image from a third-party tool that does these.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.