/* You must specify a path for this variable */ %let path=path-to-your-web-server; ods html path="&path" file='newdevice.html'; goptions reset=all; data one; format Sales dollar10.; input Sales Year $; cards; 10000 1997 12000 1998 15000 1999 16000 2000 19800 2001 ; goptions dev=activex; Title 'ActiveX Graph Control'; proc gchart; vbar year/sumvar=Sales subgroup=Year nolegend; run; goptions dev=actximg; title 'Activex Image Output'; run; goptions dev=java; title 'Java Graph Applet'; run; goptions dev=javaimg; title 'Java Image Output'; run; quit; ods _all_ close;