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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.