gchart - SAS 9.3 goptions ignores gsfname -
sorry bad english :)
i need export gif picture sas proc gchart:
filename graphout "&path.\file.gif"; goptions gsfname=graphout dev=gif gsfmode=replace; proc gchart data=work.temp; /*forming chart*/ run; quit; filename graphout clear;
but export occurs in work directory. what's problem?
i can't figure out problem option, recommend not using create graphics in event. ods easier use. there lot of ways in ods; html destination easiest:
ods html gpath="c:\temp\" path="c:\temp\"; proc gchart data=sashelp.class; vbar age/group=sex name="mychart"; run; quit;
Comments
Post a Comment