From: Daniel J S. <dan...@ie...> - 2004-07-24 07:35:26
|
And here is another inconsistency. Try the following and watch were the key is in each case: set key outside plot sin(x) set key under replot set key outside replot I've pretty much got a patch with additional enumerations (below) that is meant to mimic the current behavior of key placement. So, maybe wait a couple days so I can test it. The idea would be to move the fixes and new enumerations in right away, then modifications to the placement behavior can be done over time as a patch on sourceforge. Dan /* The stacking direction of the key box: (vertical, horizontal) */ typedef enum en_key_stack_direction { VERTICAL, HORIZONTAL } t_key_stack_direction; /* The region, with respect to the border, key is located: (inside, outside) */ typedef enum en_key_region { INTERIOR, EXTERIOR } t_key_region; /* The vertical positioning of the key box: (top, bottom, center) */ typedef enum en_key_vertical_position { VTOP, VBOTTOM, VCENTER } t_key_vertical_position; /* Horizontal positions of the key box: (left, right, center) */ typedef enum en_key_horizontal_position { HLEFT, HRIGHT, HCENTER } t_key_horizontal_position; |