|
From: Thomas S. <t.s...@fz...> - 2008-05-15 10:24:54
|
you forgot to 'set xdata time' your plotfile should read: ... set xdata time set timefmt "%m.%Y" set xrange ["12.1999":"01.2001"] plot 'bars2.txt' using 1:2 title 'A' or ... set xdata time set timefmt "%m.%Y" set xrange ["12.1999":"01.2001"] set timefmt "%m" plot 'bars.txt' using 1:2 title 'A' you may adjust the xrange more precisely: ... set timefmt "%d.%m.%Y" set xrange ["15.12.1999":"18.12.2000"] set timefmt "%m.%Y" plot 'bars2.txt' using 1:2 title 'A' -- View this message in context: http://www.nabble.com/Advice-on-boxes-plot-and-setting-xrange-with-a-time-axis-tp17228309p17250154.html Sent from the Gnuplot - Dev mailing list archive at Nabble.com. |