mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Show points when highlighting overview linecharts
This commit is contained in:
parent
b2f0fa802b
commit
dcd25fc32b
@ -435,7 +435,8 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
if (zd==hl_day) {
|
if (zd==hl_day) {
|
||||||
QColor col=QColor("red");
|
QColor col=QColor("red");
|
||||||
col.setAlpha(64);
|
col.setAlpha(64);
|
||||||
quads->add(x1-1,top,x1-1,top+height,x2,top+height,x2,top,col.rgba());
|
if (m_graphtype!=GT_POINTS)
|
||||||
|
quads->add(x1-1,top,x1-1,top+height,x2,top+height,x2,top,col.rgba());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_graphtype==GT_SESSIONS) {
|
if (m_graphtype==GT_SESSIONS) {
|
||||||
@ -578,8 +579,10 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
if ((px2-lastX[j])>barw+1) {
|
if ((px2-lastX[j])>barw+1) {
|
||||||
lastdaygood=false;
|
lastdaygood=false;
|
||||||
}
|
}
|
||||||
// if (days<180)
|
|
||||||
// points->add(px2-barw/2,py2,col1);
|
if (zd==hl_day) {
|
||||||
|
points->add(px2-barw/2,py2,QColor("red").rgba());
|
||||||
|
}
|
||||||
if (lastdaygood) {
|
if (lastdaygood) {
|
||||||
lines->add(lastX[j]-barw/2,lastY[j],px2-barw/2,py2,col2);
|
lines->add(lastX[j]-barw/2,lastY[j],px2-barw/2,py2,col2);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user