|
From: Ethan A M. <eam...@gm...> - 2014-05-12 05:38:13
|
On Sunday, 11 May 2014 11:26:38 AM Til Schubbe wrote: > Hi, > > I have data with some lines containing the time but others don't. > Example: > > Index;Time;Value > 1;;3 > 2;11:00;1 > 3;;2 > 4;;4 > 5;11:45;2 > > How do I plot grid lines only for every x-value containing a > time-statement? As stated that is not possible. Each major tic generates a grid line whether or not it has a visible label associated with it. You might be able to construct a command that adds tics only at the time labels, but then you would have neither grid line nor tic marks at the other points. Hmm. I suppose if the other points are evenly spaced you might be able to add them back as minor tics using the "set xmtics" command. > The plot should look like this: > > 4 | X | > 3 X | | > 2 | X X > 1 X | > --------------------------------------------- > | | | | | > 11:00 11:45 > > Regards > Til |