|
From: Thomas S. <t.s...@fz...> - 2008-07-17 07:32:01
|
> I can get that to work too, but unfortunately as soon as the data > is updated the numbers garble up as they aren't clearing the > previous numbers, but are overwriting them. > I am doing this by passing the variable for total packets to the > label paramter in gnuplot... a 'show label' will tell you that you have defined a whole bunch of labels, because each 'set label' creates a new label. but - each label has also a tag (see 'help label')! so, modifying your script so that your labels have defined tags will result in modified labels: set label 1 'Packet Count: $total_packets' at 1,1; set label 2 'Total Retransmits: $total_retrans' at 1,1.5; -- View this message in context: http://www.nabble.com/Gnuplot-updating-graphs-in-real-time-tp18495467p18503110.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |