|
From: <HBB...@t-...> - 2007-01-12 22:53:12
|
Aniket Sane wrote:
> I am using "set key below" to achieve the same. But then the legends
> are getting printed repetitively. Suppose I have a multiplot graph with
> three legends, then the first legend is getting printed thrice, second
> twice and the last one is getting printed once.
That would only happen if you use multiplot for entirely the wrong
purpose, and also use 'replot' to make things even worse.
What you really should be doing will more similar to
plot 'file1', \
'file2', \
'file3'
No multiplot, no replot.
|