How can I display the bar statistic value at the end of the bar?
I've tried the BARCHART statement's BARLABEL option, but it generates an error when running PROC TEMPLATE.
Thanks,
Randy
proc template;
define statgraph b_test;
begingraph / border=false ;
layout overlay / xaxisopts=(display=none) yaxisopts=(display=none) WALLDISPLAY=NONE ;
barchart x=value / name="legend" orient=vertical display=standard barlabel=true barwidth=1
fillattrs=(color=RED) OUTLINEATTRS=(color=black);
endlayout;
endgraph;
end;
run;