SummaryChart Legend fix

This commit is contained in:
Mark Watkins 2011-12-05 21:38:29 +10:00
parent 8315057a0a
commit bfe66a83cf

View File

@ -470,7 +470,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
int x,y; int x,y;
for (int j=0;j<m_codes.size();j++) { for (int j=0;j<m_codes.size();j++) {
if (totalcounts[j]==0) continue; //if (totalcounts[j]==0) continue;
if (!m_goodcodes[j]) continue; if (!m_goodcodes[j]) continue;
ChannelID code=m_codes[j]; ChannelID code=m_codes[j];
a=schema::channel[code].label(); a=schema::channel[code].label();
@ -491,11 +491,13 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
} }
QString val; QString val;
float f=0; float f=0;
if (totalcounts[j]>0) {
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) { if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
f=totalvalues[j]; f=totalvalues[j];
} else { } else {
f=totalvalues[j]/totalcounts[j]; f=totalvalues[j]/totalcounts[j];
} }
}
if (m_type[j]==ST_HOURS) { if (m_type[j]==ST_HOURS) {
int h=f; int h=f;
int m=int(f*60) % 60; int m=int(f*60) % 60;
@ -649,7 +651,7 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
} else { } else {
QString a; QString a;
for (int i=0;i<m_type.size();i++) { for (int i=0;i<m_type.size();i++) {
if (m_goodcodes[i]) continue; if (!m_goodcodes[i]) continue;
switch(m_type[i]) { switch(m_type[i]) {
case ST_WAVG: a="W-avg"; break; case ST_WAVG: a="W-avg"; break;
case ST_AVG: a="Avg"; break; case ST_AVG: a="Avg"; break;