|
From: Hans-Bernhard B. <Han...@ph...> - 2005-01-14 00:02:37
|
G S wrote: > I would prefer curvy lines, but I just can;t seem to make this look like > a nicer chart. This is your problem: > set timefmt "%m/%d/%y %H%M" Your data has a ':' between hours and minutes, but your format string doesn't. As a consequence, the minutes field of your data is completely ignored, and you get all points quantized to the previous full hour. Make that line set timefmt "%m/%d/%y %H:%M" and you should be up and running. |