|
From: Thomas S. <t.s...@fz...> - 2008-08-11 10:21:28
|
> I have made a config file myplot.p containing:
>
> set key title "test"
> set key spacing 1.3
> set xrange [ 0 : pi ]
> set yrange [ 0 : 1.5 ]
> plot sin(x)**2 ti "sin^2(x)", \
> sin(x)**3 ti "sin^3(x)",\
> sqrt(sin(x)) ti "sin^{1/2}(x)"
>
> I then load it from gnuplot and the plots are shown just fine.
> But afterwards I cannot remove the key title.
once you plotted the graph the key is there, that's normal.
for any changes you need to plot the graph again.
> I have tried to type unset key and clear but its does not
> disappear when I load myplot.p again. What is wrong?
if you 'unset key' you need to plot the graph again,
but *not* by loading the script, then you a defining the
key again (1st line), and it's plotted.
after 'unset key' you could do a 'replot', then there will
be no keys anymore.
--
View this message in context: http://www.nabble.com/Can%27t-unset-data-tp18905836p18923080.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|