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;
Before running SGRENDER, try setting the following and see if it works for you:
ods graphics / outputfmt=png;
Hope this helps!
Dan
Before running SGRENDER, try setting the following and see if it works for you:
ods graphics / outputfmt=png;
Hope this helps!
Dan
Thank you, Dan. for your help. It worked.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.