|
From: Thomas S. <t.s...@fz...> - 2010-01-15 16:19:04
|
there is no 'final' plot. 'multiplot' allows a series of individual plots on the same canvas. and all defined objects, arrows, labels, ... are drawn for each of these plots. the manual says (in the 'multiplot' section): > Just about everything else that can be set is applied > to each plot, too. If you want something to appear > only once on the page, for instance a single time stamp, > you'll need to put a set time/unset time pair around > one of the plot, splot or replot commands within the > set multiplot/unset multiplot block. the red background box should be drawn only once and at the beginning of the multiplot series, otherwise it will cover everything plotted so far. dbateman wrote: > > > > Thomas Sefzick wrote: >> >> reset >> set object 1 rectangle from screen 0,0 to screen 1,1 behind fc rgb >> "#FF0000" >> set object 2 rectangle from graph 0,0 to graph 1,1 behind fc rgb >> "#00FF00" >> set multiplot layout 2, 1 title "Plot 1" >> plot sin(x)/x >> unset object 1 >> set object 2 fc rgb "#0000FF" >> plot sin(x)/x >> unset multiplot >> >> > > That works though it seems a bit strange to me to unset an object before > plotting the final plot.. > > Best Wishes > David > > -- View this message in context: http://old.nabble.com/Use-of-multiplot-with-%22set-object%22-tp27173363p27179525.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |