|
From: Thomas S. <t.s...@fz...> - 2008-04-11 07:35:26
|
> ok so i got it. I cant include a label without plotting something. right, you need at least one plot in your multiplot environment. > so if my 4th plot is empty then i cant give a label on it. > then I have to give a label on 3rd plot. no, see 'help multiplot': > Any labels or arrows that have been defined will be drawn > for each plot according to the current size and origin > (unless their coordinates are defined in the `screen` system). labels whose position is given in screen coordinates can be placed everywhere, even across the borders of individual plots in the multiplot environment, and, these labels of only plotted once. an example: -------------------------------- set multiplot set label 1 "GOPESH_1" at screen 0.25,0.25 center set label 2 "GOPESH_2" at screen 0.75,0.75 center set label 3 "this is a very loooooong label" at screen 0.5,0.7 center set size 0.5,0.5 set origin 0,0 plot x set origin 0,0.5 plot x set origin 0.5,0 plot x set origin 0.5,0.5 plot x unset multiplot --------------------------- or ---------------------- set multiplot set label 1 "GOPESH_1" at screen 0.25,0.25 center set label 2 "GOPESH_2" at screen 0.75,0.75 center set label 3 "this is a very loooooong label" at screen 0.5,0.7 center set size 0.5,0.5 set origin 0,0 plot x unset multiplot ----------------------------- -- View this message in context: http://www.nabble.com/Please-help-with-labels-in-multiplot-tp16609073p16626387.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |