Sample 24857: Control the thickness of Interpolation lines for BOX, STD, HILO & AREA
/* Beginning in Version 7 SAS/GRAPH, the WIDTH option on a SYMBOL statement */
/* now affects the thickness of interpolation lines */
/* generated with BOX, STD, HILO, and AREA plots. */
goptions reset=all border;
/* Create input data set, A */
data a;
input xvar yvar;
datalines;
1 10
1 20
1 25
2 13
2 18
2 15
3 19
3 33
3 24
4 14
4 18
4 28
5 11
5 21
5 24
;
/* Specify SYMBOL statement */
symbol1 i=std1j c=red width=8;
/* Specify AXIS statement */
axis1 offset=(2,2)pct;
/* Specify TITLE statement */
title1 'WIDTH option';
/* Create GPLOT */
proc gplot data=a;
plot yvar*xvar/haxis=axis1;
run;
quit;

Beginning in Version 7 SASGRAPH, the WIDTH option on a SYMBOL statement now affects the thickness of interpolation lines generated with BOX, STD, HILO, and AREA plots.
| Type: | Sample |
| Topic: | SAS Reference ==> Procedures ==> GPLOT Query and Reporting ==> Creating Reports ==> Graphical ==> Graph Elements ==> Symbols/Interpolation
|
| Date Modified: | 2005-08-24 16:06:23 |
| Date Created: | 2004-11-11 11:07:51 |
Operating System and Release Information
| SAS System | SAS/GRAPH | All | 8 TS M0 | n/a |