From 0297e9d6018e40a7300d8b6b08c9a1d115c5492f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 30 Nov 2011 16:24:30 +1000 Subject: [PATCH] Fix horizontal grid to match Yaxis tickers --- Graphs/gYAxis.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 51fcc65d..9eb455ea 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -44,10 +44,10 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) if (height<0) return; - QString fd="0"; + static QString fd="0"; GetTextExtent(fd,x,y); - double max_yticks=round(height / (y+15.0)); // plus spacing between lines + double max_yticks=round(height / (y+7.0)); // plus spacing between lines //double yt=1/max_yticks; double mxy=MAX(fabs(maxy),fabs(miny));