Group Abstract Group Abstract

Message Boards Message Boards

0
|
1.8K Views
|
5 Replies
|
5 Total Likes
View groups...
Share
Share this post:

Does GraphicsColumn support non-default item-height? How?

Anonymous User
Anonymous User
Posted 8 years ago

3rd item in "Details and Options":

GraphicsColumn will by default make all items the same height....

Is there a non-default alternative? How to make a GraphicsColumn with non-uniform item-height?

POSTED BY: Anonymous User
5 Replies
Anonymous User
Anonymous User
Posted 8 years ago

Thanks very much. I had missed the docs about "Spacings" until you drew my attention to them. It looks like that is what I needed.

POSTED BY: Anonymous User

Joe,

I just realized that did not directly answer your question. Here is the layout you wanted. I'm sure it can be done programmatically but this is a start:

GraphicsColumn[Table[Graphics[Disk[], ImageSize -> 10 i], {i, 1, 5}], 
 Alignment -> Left, Frame -> All, 
 Spacings -> {10, {-25, -25, -15, -5, 5 , 5}}]

Regards,

Neil

POSTED BY: Neil Singer
POSTED BY: Neil Singer
Anonymous User
Anonymous User
Posted 8 years ago

Thanks, but that is not the result I meant to describe. To see the result I want, evaluate this:

Column[Table[Graphics[Disk[], ImageSize -> 10 i], {i, 1, 5}], 
 Alignment -> Left, Frame -> All]

I am wondering whether GraphicsColumn can do that.

POSTED BY: Anonymous User

Joe,

Set the ImageSize separately for each graphic item in the column. See the example with the different size disks:

GraphicsColumn[Table[Graphics[Disk[], ImageSize -> 10 i], {i, 1, 5}],  Alignment -> Left, Frame -> All]

Regards,

Neil

POSTED BY: Neil Singer
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard