I am trying to make my display smaller. I noticed that when I resize bar charts made with gchart that the inner statics are lost. Is there a way to resize a barchart without losing the statistic? I am using
goptions reset=all device=gif hsize=3in vsize=3in noborder;
I am guessing this has to do with the device that the gchart is rewritten to. Any ideas on how I can keep the tooltip and inner statistic features?
I also noticed that gcharts do not respond to ods tagset panels like other graphs do.
ods tagsets.htmlpanel event = panel(start); /*doesn’t work on gchart*/
Basic code is below:
goptions reset=all device=gif hsize=3in vsize=3in noborder;
proc gchart data=enrollment;
vbar TWO_DIGIT_YEAR /
width=3
type=sum
inside=subpct
sumvar=STUDENTS_ENROLLED
subgroup=Status
discrete
gaxis=axis1 maxis=axis2 raxis=axis3;
run; Quit;
I posted this question in the graphics forum, thanks for letting me know it was in the wrong spot.
If you know what size you want it would probably be best to generate the output with the desired size options as any significant resizing tends to make any text inside the graphics area suboptimal.
Or send the output to a vector graphics format which may scale a bit better.
I have used GMAP with htmlpanel so I suspect that you have issues with the syntax for that bit.
before have the first event it is a good idea to start with the file info:
ods tagsets.htmlpanel
path=odsout (url=none)
body="MapPanel .html"
nogtitle
;
for example.
Then start adding the events.
After all of the panels are defined using appropriate finish for each column/row started then close the destination
And device PNG is probably preferable to GIF
Ballardw,
Could you elaborate on how vector graphics or gmap can be used with gchart? When I Google this all I get is mapping graphics.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.