Hi all,
I am getting 1 st diagram as my output but I needed output same as like the 2nd diagram.
I have used the following code.
proc sgplot data=graph_ae;
highlow y=aeterm low=aestdy high=aeendy / type=line group=aeser
lineattrs=(/*color=blue*/ pattern=solid) barwidth=0.8
/*lowlabel=aeterm*/ highcap=FILLEDARROW /*attrid=Severity;*/;
scatter y=aeterm x=adurn / x2axis markerattrs=(size=0);
xaxis grid display=(nolabel) offsetmax=0.02 values=(0 to 60 by 2);
yaxis grid display=(noticks nolabel);
run;
1. the Plot term should present inside the graph. (I have specified with arrow)
2. I have to specify condition at the end plot. (please refer to the second diagram)
Thanks in advance.

