auto_ScaleAxes

auto_ScaleAxes re-scales all diagrams on the page created with the auto_LoadTemplate function, so that all datasets on the diagrams are completely visible.

bool = auto_ScaleAxes()
bool = auto_ScaleAxes(ssXYZ)

Return Value

bool is always TRUE (1).

Parameters

ssXYZ

can be one of these three letters:

Value Meaning
“X” only the x-axes will be re-scaled.
“Y” only the y-axes will be re-scaled.
“Z” only the z-axes will be re-scaled.

Comment

If invoked without parameters, all axes will be auto scaled.

Example

Auto scale the Y axis only:

auto_ScaleAxes("Y");

id-650958