Skip to content

Commit

Permalink
Reduce pen width for Q50 and linear regression plots from 4 to 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemek83 committed Jan 10, 2025
1 parent e95d5e9 commit 1bc261c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BasicDataPlot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void BasicDataPlot::initQ50()
plotQ50_.setStyle(QwtPlotCurve::Lines);
QPen pen = plotQ50_.pen();
pen.setColor(QColor(Qt::magenta));
pen.setWidth(4);
pen.setWidth(3);
plotQ50_.setPen(pen);
plotQ50_.setZ(qwt_ble_utilities::MEDIUM_ORDER);
plotQ50_.setRenderHint(QwtPlotItem::RenderAntialiased, true);
Expand All @@ -86,7 +86,7 @@ void BasicDataPlot::initLinearRegression()
plotLinearRegression_.setStyle(QwtPlotCurve::Lines);
QPen pen = plotQ75_.pen();
pen.setColor(QColor(Qt::cyan));
pen.setWidth(4);
pen.setWidth(3);
plotLinearRegression_.setPen(pen);
plotLinearRegression_.setZ(qwt_ble_utilities::HIGH_ORDER);
plotLinearRegression_.setRenderHint(QwtPlotItem::RenderAntialiased, true);
Expand Down
Binary file modified tests/res/BasicDataPlotDefault.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/res/BasicDataPlotItemChecked.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1bc261c

Please sign in to comment.