DADiSP Worksheet Functions > Function Categories > Plot Attributes > SETTROTX, SETTROTY
Sets the rotation for tic labels on x- and y-axis.
SETTROTX(win, rotation)
SETTROTY(win, rotation)
win |
- |
Optional. A window, defaults to the current Window. |
||||||||||
rotation |
- |
Optional. An integer, the tic label rotation mode:
|
W1: gsin(100,.01,4);scales(3);settrotx(0);
label("No Rotation")
W2: gsin(100,.01,4);scales(3);settrotx(1);
label("90 deg Rotation")
W3: gsin(100,.01,4);scales(3);settrotx(3);
label("270 deg Rotation")
W4: gsin(100,.01,4);scales(3);settrotx(4);
label("Character Rotation")
Show the x-axis tic labels in various modes of rotation.
The combination of orientation (SETTORIX, SETTORIY) and vertical default rotation (SETTVDEFX, SETTVDEFY) covers most cases desired by users. Setting rotation explicitly via SETTROTX, SETTROTY rotation functions is meant for users who want to fine-tune a plot presentation for printing.
It is recommended that you use the SETTORI-, SETAORI-, SETTVDEF-, and SETAVDEF- functions. SETTROTX and SETTROTY apply to the scales associated with the current focus of the specified window.
If scales change via execution of the SCALES command, function key (F5) or toolbar button, then any rotations set explicitly by rotation functions will be replaced by the rotation values inferred from orientation and vertical default rotation.