Modifies the height of one row of plots created by split or grid_objects.
adjust_grid_yrelsize([id,] row, size)
-
id - an optional ChipsId structure containing values to
modify the currency state for the command.
-
row - indicates which row of plots to modify. The rows are
numbered from top to bottom, starting at 1.
-
size - ratio of the height of the selected row to the other
rows (e.g. 1=same size, 2=twice as tall, .5=half as tall).
The adjust_grid_yrelsize command changes the size of a row of
plots relative to the other rows in the frame created by split
or grid_objects.
The height of the specified row is set to "size * unit_height".
All other rows are set to unit_height.
The following is used to determine the height of the columns:
available_area = 1 - (top_margin + bottom_margin + (num_rows -1)*ygapsize)
unit_height = available_area / ((num_rows-1) + size)
To change the spacing between the plots, use the
adjust_grid_gaps command
("ahelp adjust_grid_gaps")
.
chips> split(3,3)
chips> adjust_grid_yrelsize(2,.5)
A split command is issued to create a grid of 9 plots. The
adjust_grid_yrelsize command sets the width of the center row
to be half as tall as the other rows.
chips> grid_objects(2,2,.05,.05,1)
chips> adjust_grid_yrelsize(1,3)
A grid_objects command creates a grid of 4 plot areas.
The adjust_grid_yrelsize command makes the first row
of plots three times as tall as the other row.
- py.chips
-
add_plot,
add_plotarea,
adjust_grid_gaps,
adjust_grid_xrelsize,
adjust_grid_xrelsizes,
adjust_grid_yrelsizes,
clear_plot,
current_plot,
delete_plot,
display_plot,
get_plot,
get_plot_range,
grid_objects,
hide_plot,
move_plot,
reposition_plot,
set_plot,
split,
strip_chart,
swap_object_positions
|