Hi everyone, Is there any way to reduce the the width of line or size of axis here ? I have used below steps and the output looks like this. proc sgplot data=all_2 nowall noborder nocycleattrs noautolegend dattrmap=attrmap sganno=anno; refline ref / lineattrs=(thickness=13 color=cxf0f0f7); highlow y=obsid low=lowercl high=uppercl/type=line barwidth=1 LINEATTRS=(thickness=2); scatter y=obsid x=value / markerattrs=(symbol=squarefilled) ; scatter y=obsid x=value / markerattrs=(size=0) x2axis; refline 1 / axis=x; text x=xl y=obsid text=text / position=bottom contributeoffsets=none strip ; yaxistable char / location=inside position=left textgroup=id NOLABEL textgroupid=text indentweight=indentWt; yaxistable per1 per2 / location=inside position=left labelattrs=(size=7) valueattrs=(size=4); yaxistable col0002 / location=inside position=right pad=(right=15px) labelattrs=(size=7) valueattrs=(size=4); yaxis reverse display=none colorbands=odd colorbandsattrs=(transparency=1) offsetmin=0.0 ; xaxis display=(nolabel) values=(0.0 0.5 1.0 1.5 2.0 2.5); x2axis label='Hazard Ratio' display=(noline noticks novalues) labelattrs=(size=8); run; Some points to be assumed here : (1) Left side data is dummy the text in 1st column are bit long so I have already used the space at its best. (2) I cannot keep the values outside the graph it has to be on left and right side. Please suggest how could I reduce th size of the axis or the "lines" in highlow statement so that it will not overwrite the values around it. Thank you in advance.
... View more