Hi,everyone,
I want to draw a series plot for multiple groups.
I want to use self-defined values of line thickness for each group and output the results to a rtf file.
I wrote a sample code with sas built-in dataset "Stock" as follows
proc template; define statgraph Graph; dynamic _DATE _CLOSE _STOCK; begingraph; layout lattice / rowdatarange=data columndatarange=data rowgutter=10 columngutter=10; layout overlay; seriesplot x=_DATE y=_CLOSE / group=_STOCK name='series' connectorder=xaxis lineattrs=(thickness=5 ); endlayout; endlayout; endgraph; end; run; ODS RTF FILE="C:\Users\SAS_Fun\Desktop\test.rtf" ; proc sgrender data=WORK.STOCKS template=Graph; dynamic _DATE="DATE" _CLOSE="CLOSE" _STOCK="STOCK"; run; ODS RTF CLOSE;
In the SAS viewer,it showed like this:
However,in the rtf file,it showed as follows
Would you please help me with that,thank you so much!
Try setting ODS GRAPHICS option ATTRPRIORITY=COLOR to get all solid lines with 3 colors.
What is the SAS release you are using? Maybe the output is scalable (EMF) and not working well. You can try setting OUTPUTFMT=PNG to see if that works better.
Try setting ODS GRAPHICS option ATTRPRIORITY=COLOR to get all solid lines with 3 colors.
What is the SAS release you are using? Maybe the output is scalable (EMF) and not working well. You can try setting OUTPUTFMT=PNG to see if that works better.
Thank you so much,Sanjay!
It works very well,thank you again!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
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.