DADiSP Worksheet Functions > Function Categories > Plot Attributes > WHICHSCALES
Returns integer corresponding to the scale which matches described property parameters.
WHICHSCALES(yaxis, yloc, ylabel, xaxis, xloc, xlabel)
yaxis |
- |
An integer. The y-axis visibility:
|
||||
yloc |
- |
An integer. The y-axis location:
|
||||
ylabel |
- |
An integer. The y-label visibility:
|
||||
xaxis |
- |
An integer. The x-axis visibility:
|
||||
xloc |
- |
An integer. The x-axis location:
|
||||
xlabel |
- |
An integer. The x-label visibility:
|
An integer that can be used as the argument to the SCALES function to produce the scales with desired properties.
whichscales(1,0,1,1,0,1)
returns the value: 2. The command SCALES(2), results in the x-axis displayed on the bottom and the y-axis displayed on the left with labels on both the x-axis and y-axis.
whichscales(1,1,1,0,0,0)
returns the value 14; y-axis on right with labels displayed.
whichscales(0,0,0,1,1,1)
returns the value 16; x-axis on bottom with labels displayed.