diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 5ac7ebbc..4e8a3df3 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -71,8 +71,8 @@ void InitGraphs() PREF["Fonts_Graph_Italic"]=false; } if (!PREF.contains("Fonts_Title_Name")) { - PREF["Fonts_Title_Name"]="Serif"; - PREF["Fonts_Title_Size"]=11; + PREF["Fonts_Title_Name"]="Sans Serif"; + PREF["Fonts_Title_Size"]=14; PREF["Fonts_Title_Bold"]=true; PREF["Fonts_Title_Italic"]=false; } diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index bef67ed5..40d74f8a 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -601,18 +601,21 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) //////////////////////////////////////////////////////////////////// // Draw Legends on the top line //////////////////////////////////////////////////////////////////// + + QFontMetrics fm(*defaultfont); + int bw=fm.xHeight(); + int bh=fm.height()/1.5; + if ((codepoints>0)) { //(m_codes.size()>1) && QString text=schema::channel[code].label(); int wid,hi; GetTextExtent(text,wid,hi); legendx-=wid; w.renderText(text,legendx,top-4); - int bw=GetXHeight(); - legendx-=bw/2; - int tp=top-5-bw/2; - w.quads()->add(legendx-bw,tp+bw/2,legendx,tp+bw/2,legendx,tp-bw/2,legendx-bw,tp-bw/2,m_colors[gi].rgba()); - legendx-=hi+bw/2; + int tp=top-5-bh/2; + w.quads()->add(legendx-bw,tp+bh/2,legendx,tp+bh/2,legendx,tp-bh/2,legendx-bw,tp-bh/2,m_colors[gi].rgba()); + legendx-=bw*2; } } if (!total_points) { // No Data? diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index f89ede19..8d87a023 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -570,6 +570,10 @@ jumpnext: QString a,b; int x,y; + QFontMetrics fm(*defaultfont); + int bw=fm.xHeight(); + int bh=fm.height()/1.5; + bool ishours=false; int good=0; for (int j=0;jadd(legendx-bw,tp+bw/2,legendx,tp+bw/2,legendx,tp-bw/2,legendx-bw,tp-bw/2,m_colors[j].rgba()); - legendx-=hi+bw/2; + int tp=top-5-bh/2; + w.quads()->add(legendx-bw,tp+bh/2,legendx,tp+bh/2,legendx,tp-bh/2,legendx-bw,tp-bh/2,m_colors[j].rgba()); + legendx-=bw*2; //lines->add(px,py,px+20,py,m_colors[j]); @@ -652,8 +655,8 @@ jumpnext: float val=total_val/float(total_hours); a=m_label+"="+QString::number(val,'f',2)+" "; GetTextExtent(a,x,y); - legendx-=20+x; - w.renderText(a,legendx+24,py+1); + legendx-=x; + w.renderText(a,legendx,py+1); } }