I am trying to plot the different levels of salary in a needle plot and I'd like a reference line. The following code provides this reference line but the line is the same colour as the needles and is too thin. Is there a way to change this?
SYMBOL1
INTERPOL=NEEDLE
HEIGHT=10pt
VALUE=NONE
LINE=1
WIDTH=2
CV = _STYLE_
;
Axis1
STYLE=1
WIDTH=1
MINOR=NONE
REFLABEL=(j=c color = red width = 5 '');
;
Axis2
STYLE=1
WIDTH=1
MINOR=NONE
;
TITLE;
TITLE1 "Bootstrap: Needle Plot of log salary";
PROC GPLOT
DATA = sashelp.baseball
;
PLOT logsalary * name /
VAXIS = AXIS1
HAXIS = AXIS2
VREF = 4
;
RUN; QUIT;