But you can use annotate macros to add this line . NOTE: It is from Arthur Carpenter's Book - Complete Guide to proc report. ods pdf style=printer
file="c:\ch10_3_3.pdf"
startpage=never;
title1;
proc report data=sashelp.class
nowd; run;
* Add the annotate macros to the autocall library;
%annomac
* Build the annotate data set;
data Annolines;
length function color $8;
retain xsys ysys '5';
* Syntax for the LINE macro;
%*LINE (x1, y1, x2, y2, color, line_type, size);
%line(.5,69.6,50.5,89.6,blue,2,20)
%line(.5,80.5,50.5,90.5,red,2,20)
%line(42.2,67,62.2,104,green,2,20)
run;
* Use the annotate data set;
proc gslide anno=annolines;
run;
quit;
ods _all_ close;
Ksharp
... View more