| AHELP for CIAO 4.5 ChIPS v1 | move_colorbar |
Context: images |
Synopsis
Moves the colorbar to a new location.
Syntax
move_colorbar( [ChipsId,] xval, yval [,mode])
Description
- ChipsId - an optional ChipsId structure containing values to modify the currency state for the command.
- xval - new x location or the difference to move in x
- yval - new y location or the difference to move in y
- mode - reposition using absolute (0) or delta (1) values
The move_colorbar command moves the colorbar to a new position. The new location may be specified as an absolute position (default) or as relative offsets from the original location. When the "mode" parameter is set to absolute (0), (xval,yval) will be the origin of the repositioned colorbar.
The following coordinate systems may be used to move a colorbar: PIXEL, WINDOW_NORM, FRAME_NORM, PLOT_NORM, or DATA. The system is specified by setting the coord_sys field of the optional ChipsId structure which may be passed into the move_colorbar routine. If a ChipsId is not provided, the default coordinate system of the colorbar is used.
When a colorbar is moved, it remains in its original coordinate system regardless of what coordinate system was used for the move. The move command translates the specified values to the coordinate system that the colorbar is in before applying them to the colorbar. This means that colorbars that are originally placed in normalized coordinates and get relocated using data coordinates will not be clipped if they land outside the visible data range. Conversely, colorbars in data coordinates which are moved using normalized coordinates to beyond the plot area will be clipped.
This command is equivalent to calling the move command with 'chips_colorbar' specified as the object.
Example 1
chips> move_colorbar(.5,.5)
Move the current colorbar to the center of the frame in frame normalized coordinates.
Example 2
chips> id=ChipsId() chips> id.coord_sys=PIXEL chips> move_colorbar(id,-20,0,1)
For a colorbar specified in data coordinates, adjust the position by 20 pixels to the left in the x direction. Do not move it in the y direction.
Example 3
chips> id=ChipsId() chips> id.colorbar='all' chips> id.coord_sys=DATA chips> move_colorbar(id,40,10,1)
Shift all colorbars by the same distance in data coordinates.
Bugs
See the bugs pages on the ChIPS website for an up-to-date listing of known bugs.

![[ChIPS Logo]](../imgs/chips_logo_navbar.gif)