BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
new510
Fluorite | Level 6

Dear All,

 

I use the example code to generate a transparent background but still not getting a transparent output. I am using SAS 9.4 M6 version.

I really appreciate any help you can provide.

 

proc template;
define statgraph barchart;
begingraph /OPAQUE=FALSE;
entrytitle "Average Mileage by Vehicle Type";
layout overlay / walldisplay=NONE;
barchart category=type response=mpg_highway / name="barchart"
fillattrs=(color=DarkSeaGreen)
stat=mean orient=horizontal dataskin=matte;
endlayout;
endgraph;
end;

ods rtf file="Barchart.rtf";

proc sgrender data=sashelp.cars template=barchart;
run;

ods rtf close;

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

Before running SGRENDER, try setting the following and see if it works for you:

ods graphics / outputfmt=png;

 

Hope this helps!

Dan

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

Before running SGRENDER, try setting the following and see if it works for you:

ods graphics / outputfmt=png;

 

Hope this helps!

Dan

new510
Fluorite | Level 6

Thank you, Dan. for your help. It worked.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 918 views
  • 0 likes
  • 2 in conversation