diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 74f4934e..1d4db2eb 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -131,6 +131,12 @@ void GetTextExtent(QString text, int & width, int & height, QFont *font) #endif } +int GetXHeight(QFont *font) +{ + QFontMetrics fm(*font); + return fm.xHeight(); +} + GLBuffer::GLBuffer(int max,int type, bool stippled) :m_max(max), m_type(type), m_stippled(stippled) { diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 723298f0..719a2b73 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -45,6 +45,9 @@ extern QHash images; */ void GetTextExtent(QString text, int & width, int & height, QFont *font=defaultfont); +//! \brief Return the height of the letter x for the selected font. +int GetXHeight(QFont *font=defaultfont); + class gGraphView; class gGraph; diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 68bc81f0..0631acb4 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -510,11 +510,12 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) GetTextExtent(text,wid,hi); legendx-=wid; w.renderText(text,legendx,top-4); - int bw=hi; - legendx-=hi/2; + int bw=GetXHeight(); + legendx-=bw/2; - w.quads()->add(legendx-bw,top-4,legendx,top-4,legendx,top-bw,legendx-bw,top-bw,m_line_color); - legendx-=hi+hi/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_line_color); + legendx-=hi+bw/2; } } if (!total_points) { // No Data? diff --git a/docs/channels.xml b/docs/channels.xml index ed594448..ddff66c3 100644 --- a/docs/channels.xml +++ b/docs/channels.xml @@ -39,8 +39,8 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!! - - + +