I am having simple Bar plot. See below code. In SCORE dataset for name "LMN" doesn't have any marks. I want to present star(*) at the x-axis below tickvalues (I can hide tickvalues). Any thoughts How to present Star(*) at axis, indicating it is different from dataset row having no values. data score; input name $1-3 marks 5.; datalines; abc 50 bcd 70 LMN kgh 90 uyt 10 ; run; proc template; define statgraph temp; begingraph; layout overlay; barchart x=name y=score; endlayout; endgraph; end; run; proc sgrender data=score template=temp; run;
... View more