BookmarkSubscribeRSS Feed
srinivaschary
Calcite | Level 5

Hi,

How to create organizational chart dinamically like below. When reporting authority change it should be change with photo and name and Designation

Sample Org Chart.png

2 REPLIES 2
rogerjdeangelis
Barite | Level 11
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))



SASKiwi
PROC Star

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. 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Tips for filtering data sources in SAS Visual Analytics

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.

Discussion stats
  • 2 replies
  • 3044 views
  • 0 likes
  • 3 in conversation