mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Summary Chart tooltips were missing
This commit is contained in:
parent
a9c65510c6
commit
c4937d07a2
@ -693,21 +693,21 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
|||||||
val=QString::number(d.value()[i+1],'f',0);
|
val=QString::number(d.value()[i+1],'f',0);
|
||||||
z+="\r\n"+a+"="+val;
|
z+="\r\n"+a+"="+val;
|
||||||
} else {
|
} else {
|
||||||
if (day && (day->channelExists(m_codes[i]) || day->settingExists(m_codes[i]))) {
|
//if (day && (day->channelExists(m_codes[i]) || day->settingExists(m_codes[i]))) {
|
||||||
schema::Channel & chan=schema::channel[m_codes[i]];
|
schema::Channel & chan=schema::channel[m_codes[i]];
|
||||||
val=QString::number(d.value()[i+1],'f',2);
|
val=QString::number(d.value()[i+1],'f',2);
|
||||||
z+="\r\n"+chan.label()+" "+a+"="+val;
|
z+="\r\n"+chan.label()+" "+a+"="+val;
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
graph->ToolTip(z,x,y-10,2200);
|
graph->ToolTip(z,x,y-15,2200);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\nNo Data";
|
QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\nNo Data";
|
||||||
graph->ToolTip(z,x,y-10,2200);
|
graph->ToolTip(z,x,y-15,2200);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user