I am using the below script to stream to HTML. The title is limegreen and has 2 lines. Problem is a gray line is between the 2 titles. Is there a way to control this? I am using the below proc template and chart code:
proc template;
define style mystyle2;
parent=styles.STATISTICAL;
class body/
backgroundcolor=white
color=black
fontfamily="Verdana, Arial"
borderstyle=none;
class systemtitle/
fontfamily="Verdana, Arial"
fontweight=bold
fontsize=8pt
backgroundcolor=cxA6D96A
background=cxA6D96A
borderstyle=none
bordercolor=cxA6D96A
BORDERBOTTOMCOLOR=cxA6D96A
BORDERTOPCOLOR=cxA6D96A
foreground=black;
class table/
backgroundcolor=white
bordercolor=black
borderstyle=solid
borderwidth=1pt ;
class header, footer/
backgroundcolor=cxA6D96A
color=black
fontfamily="Verdana, Arial"
/*fontweight=bold */
fontsize=8pt
bordercolor=cx525252;
class data/
fontfamily="Verdana, Arial"
fontsize=8pt
bordercolor=black;
style graphcolors from graphcolors /
'gcdata1'=cxA6D96A
'gcdata2'=cxD9EF8B
'gcdata3'=cxFEE08B
'gdata1'=cxA6D96A
'gdata3'=cxFEE08B
'gdata4'=black
'gdata2'=cxD9EF8B;
style GraphBackground
"Graph backgroundcolor attributes" /
backgroundcolor = white
textalign = L
verticalalign = B;
end;
run;
title1 'Open Cases Pipeline' ;
title2 '(PEs)' ;
proc sgplot data=report.PipeLine (where=(Week_Ending_On
vline Week_Ending_On/ response=PipeLine markers lineattrs=(color=cxA6D96A thickness=4)
markerattrs=(symbol=circlefilled color=cxA6D96A size=12);
yaxis display=(nolabel);
xaxis display=(nolabel);
keylegend /location =inside position=bottomright noborder ;
format Week_Ending_On mmddyy5.;
run;
... View more