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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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