%let name=filled; filename odsout '.'; data a; input state $ 1-2 x y size; datalines; SC 1 2 9 TN 3 4 27 NC 7 6 49 ; run; goptions device=png xpixels=300 ypixels=258 cback=white; goptions htitle=7pct htext=6pct ftitle="albany amt/bold" ftext="albany amt"; ODS LISTING CLOSE; ODS HTML path=odsout body="&name..htm" style=minimal; axis1 label=none order=(0 to 10 by 2) minor=none offset=(0,0); symbol1 v=squarefilled h=6.0 i=join w=1 c=cxffcd01 pointlabel=("#state" h=5pct); symbol2 v=diamondfilled h=6.0 i=join w=1 c=cx663299 pointlabel=("#state" h=5pct); symbol3 v=trianglefilled h=6.0 i=join w=1 c=cx990303 pointlabel=("#state" h=5pct); title1 ls=1.5 "SAS 9.3 GPlot"; title2 "also filled markers"; title3 angle=-90 " "; proc gplot data=a; plot y*x=state / vaxis=axis1 haxis=axis1 nolegend des="" name="&name" ; run; quit; ODS HTML CLOSE; ODS LISTING;