Hi,
The AXIS statement will allow you to change the rotation of the label (like 'DATE') or the rotation of the variable values (like '01JAN06' or '01FEB06').
The syntax on the axis statement is very straightforward, and you can select it in the EG task window. The syntax will be something like:
[pre]
AXIS1 minor=none label=(angle=45) value=(angle=45);
[/pre] but then you have to link the AXIS statement with the SAS/Graph procedure. So, for example, if your procedure of choice is PROC GPLOT, then you would issue a PLOT statement like this:
[pre]PLOT YVAR*XVAR/ HAXIS=AXIS1; [/pre]
Basically, it's the same thing with PROC GCHART, only you would have something like:[pre]
vbar3d chartvar / maxis=axis1; [/pre] specified for the horizontal axis or midpoint axis.
However, there is not a good way to set this as the default all the time, because you might want to use a different AXIS statement with different SAS/Graph procedures.
When you are in EG, look under the Horizontal Axis choice in the navigation panel. When you are working with the Horizontal axis, you will find a tab for the Label and a tab to change the Value. You can change the label rotation on the Label tab and the value rotation on the value tab. This should put the correct code into your EG project.
Hope this helps,
cynthia