mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix SummaryChart total calculations
This commit is contained in:
parent
c0040b84e0
commit
c8f17fe819
@ -315,12 +315,21 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
w.renderText(a,px+24,py+5);
|
w.renderText(a,px+24,py+5);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (total_days>0) {
|
QString z=m_label;
|
||||||
float val=total_val/float(total_days);
|
if (m_graphtype==GT_LINE) {
|
||||||
QString z=m_label+"="+QString::number(val,'f',2)+" days="+QString::number(total_days,'f',0);
|
if (totalcounts[0]>0) {
|
||||||
w.renderText(z,left,top-1);
|
float val=totalvalues[0]/float(totalcounts[0]);
|
||||||
// val = AHI for selected area.
|
z+="="+QString::number(val,'f',2)+" days="+QString::number(totalcounts[0],'f',0);
|
||||||
|
}
|
||||||
|
// val = AHI for selected area.
|
||||||
|
} else { // Bar chart works in total mode
|
||||||
|
if (total_days>0) {
|
||||||
|
float val=total_val/float(total_days);
|
||||||
|
z+="="+QString::number(val,'f',2)+" days="+QString::number(total_days,'f',0);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
w.renderText(z,left,top-1);
|
||||||
}
|
}
|
||||||
bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user