I have a problem when I cannot increase my GNUPLOT. I created a bash script that records information about various resources and displays this information with the following command.
gnuplot -e persist "set title 'Resource monitor' ; set timefmt '%y/%m/%d-%H:%M:%S' ; set xdata time ; set xlabel 'TIME' ; set ylabel 'PERCENT' set yrange [0:101]" -e "plot '${cpuResFile}' using 1:2 title 'CPU' smooth Bezier, '${memResFile}' using 1:2 title 'MEM' smooth Bezier" &
The graph is viewable and displays my information that I want, I just canβt understand how to allow it to zoom in and out. I read that this has something to do with the fact that the X11 window is no longer installed or I need to install it through the command line, I just canβt figure out how to do this, or even if this is the reason. Hope there are some GNUPLOT experts who can help me. :)
Thanks.
source
share