Currently I'm trying to export a SAS graph to a .bmp image format. I achieved a .bmp file but it is unreadeable.
ods HTML body="C:\Users\example.bmp";
proc gchart DATA=WORK.TABLE;
VBAR CENTRE/ SUMVAR=CONTRACTS SUBGROUP="TRAM";
run;
quit;
ods HTML close;
Does anyone knows how to correctly export a graph to a .bmp format?
Thanks for the help.