mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
SummaryChart Legend fix
This commit is contained in:
parent
8315057a0a
commit
bfe66a83cf
@ -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,10 +491,12 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
}
|
}
|
||||||
QString val;
|
QString val;
|
||||||
float f=0;
|
float f=0;
|
||||||
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
|
if (totalcounts[j]>0) {
|
||||||
f=totalvalues[j];
|
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
|
||||||
} else {
|
f=totalvalues[j];
|
||||||
f=totalvalues[j]/totalcounts[j];
|
} else {
|
||||||
|
f=totalvalues[j]/totalcounts[j];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (m_type[j]==ST_HOURS) {
|
if (m_type[j]==ST_HOURS) {
|
||||||
int h=f;
|
int h=f;
|
||||||
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user