I'm running 9.3 My ODS PDF gbarline chart is stretching the symbol so that a dot becomes a large elipse. The thing is, this is happening inconsistently as charts further within my program are appearing with the symbols shaped as expected. I'm struggling to identify & debug the culprit, suggestions please? Apologies - I can't replicate the issue with a demonstration program and I can't use my production data/chart in this forum. Thanks ods graphics on ; goptions device= jpeg border ; goptions htext=4 ftext="arial"; * Bar legend ; legend1 position=(middle left outside) origin=(,4.8)cm across=1 shape=bar(0.15,0.15)cm label=(position=(top ) j=l "VOLUME"); * Line plot legend ; legend2 position=(middle left outside) origin=(,1.8)cm across=1 repeat=2 label=(position=(top) j=l "VALUE") value=(height=3) ; axis1 value=(height=2.8) order=(&bar_order.) label=none; axis3 label=none ; symbol1 value=dot c=black h=4; symbol2 value=star c=black h=4; symbol3 value=square c=black h=4; symbol4 value=diamond c=black h=4; pattern1 c=biyg; pattern2 c=bio; * CHART - PDF; ods region width=10cm height=2cm x=1.2cm y=8cm; ods text = "^{style[font_face='calibri' fontsize=2.5 just=left fontweight=bold] demotext}"; ods region width=18cm height=7cm x=1.35cm y=8.5cm; proc gbarline data=work.a_dataset; title ' ' ; format vol val percent8.0 ; bar MONTH / discrete sumvar=VOLUME subgroup=PRODUCT legend=legend1 axis=axis3 maxis=axis1 clipref autoref missing ; plot / sumvar=Share_PRODUCT legend=legend2 axis=axis3 ; plot / sumvar=Share_SUB_PROD; run;
... View more