From be34415aad27dc416fcd9eff076fb97cc78ebd9f Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Tue, 16 Jul 2013 11:07:34 +0200 Subject: [PATCH] fio2gnuplot: Fixing Yaxis rendering for 2D plots With many values, gnuplot was complaining about too many ticks like : "graph2D.gpm", line 26: warning: Too many axis ticks requested (>9e+03) Using the "auto" command, that works much more better and axis are now readable --- tools/plot/graph2D.gpm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/plot/graph2D.gpm b/tools/plot/graph2D.gpm index 2d0d30ad..efc7ac27 100644 --- a/tools/plot/graph2D.gpm +++ b/tools/plot/graph2D.gpm @@ -8,7 +8,7 @@ set output '$3.png' #Preparing Axes #set logscale x -set ytics axis out +set ytics axis out auto #set data style lines set key top left reverse set xlabel "Time (Seconds)" -- 2.25.1