Modify All Graphs

From Software Product Documentation
Jump to navigation Jump to search
Language:  English  • français • italiano • português • español 

This command was implemented in Visual3D v5.02.25.

Command

Modify_All_Graphs
! /PAGE_NO=
! /Y_MODIFY_RANGE=TRUE
! /Y_USE_AUTO_RANGE=TRUE
! /Y_MIN_BUFFER=
! /Y_MAX_BUFFER=
! /Y_MIN=
! /Y_MAX=
! /Y_SCALE_INCREMENT=
! /Y_AXIS_LABEL=
! /X_AXIS_LABEL=
;



Command Parameters

PAGE_NO

If the PAGE_NO parameter is blank, the command will run on all pages.

If PAGE_NO is set to 2+3+4, only pages 2, 3 & 4 will be modified.

Modify Range

Y_MODIFY_RANGE

If this parameter is set to FALSE, the range will not be modified, regardless of the specified parameters.

When this parameter is set to TRUE, the other parameters to modify the Y range may be used.

Modify Range Parameters: (click to expand)

Y_USE_AUTO_RANGE

If this parameter is set to TRUE, the range will automatically be set using the signal max/min values.

This parameter can be used with the Y_SCALE_INCREMENT parameter.

When Y_USE_AUTO_RANGE is set to FALSE, you can use either Y_MIN_BUFFER&Y_MAX_BUFFER OR Y_MIN&Y_MAX.


Y_MIN_BUFFER&Y_MAX_BUFFER

The auto range parameter will set the graph max/min to be the signal max/min. However, if you want the graph max/min to be +/- some value above the signal max/min, use the buffer values.

For example, if you want the graph max to be 10 units greater than the signal max and the graph min to be 15 units less than the signal min, you would:

...
 /Y_MODIFY_RANGE=TRUE
 /Y_USE_AUTO_RANGE=FALSE
 /Y_MIN_BUFFER= 15
 /Y_MAX_BUFFER= 10
! /Y_MIN=
! /Y_MAX=
...

NOTE: The min buffer does not use a negative sign.

This parameter can be used with the Y_SCALE_INCREMENT parameter.


Y_MIN&Y_MAX

You can explicitly set the graph max/min.

If you want to explicitly specify the graph max/min (max 25, min -25), you would:

...
 /Y_MODIFY_RANGE=TRUE
 /Y_USE_AUTO_RANGE=FALSE
! /Y_MIN_BUFFER=
! /Y_MAX_BUFFER=
 /Y_MIN= 25
 /Y_MAX= -25
...


This parameter can be used with the Y_SCALE_INCREMENT parameter.


Y_SCALE_INCREMENT

This parameter sets the max/min value to the nearest value. Example, if the parameter is set to 1, the graph max/min will be set to the highest whole number. If the parameter is set to 5, the graph max/min will be set to the highest five value.

Modify Axes Labels

If you set either AXIS_LABEL equal to REMOVE_LABEL, the label will be removed.

If the parameter is set to blank (is empty), the label will not be updated.

Retrieved from ""