diff --git a/oscar/Graphs/gGraphView.cpp b/oscar/Graphs/gGraphView.cpp
index 69381073..1a4bacd0 100644
--- a/oscar/Graphs/gGraphView.cpp
+++ b/oscar/Graphs/gGraphView.cpp
@@ -1415,7 +1415,14 @@ bool gGraphView::renderGraphs(QPainter &painter)
float pinned_height = 0; // pixel height total
int pinned_graphs = 0; // count
+ bool showTitle=!AppSetting->disableDailyGraphTitles();
+ bool dailyGraph= mainwin->getDaily()->graphView() == this;
for (auto & g : m_graphs) {
+ if (dailyGraph) {
+ // suppress graph titles in daily graphs based on user preferences
+ g->setShowTitle(showTitle) ;
+ }
+
int minh = g->minHeight();
if (g->height() < minh) {
g->setHeight(minh);
diff --git a/oscar/SleepLib/appsettings.cpp b/oscar/SleepLib/appsettings.cpp
index d5839498..97bde1af 100644
--- a/oscar/SleepLib/appsettings.cpp
+++ b/oscar/SleepLib/appsettings.cpp
@@ -28,6 +28,7 @@ AppWideSetting::AppWideSetting(Preferences *pref) : PrefSettings(pref)
initPref(STR_AS_IncludeSerial, false);
initPref(STR_AS_MonochromePrinting, false);
//initPref(STR_AS_EventFlagSessionBar, false);
+ initPref(STR_AS_DisableDailyGraphTitles, false);
initPref(STR_AS_ShowPieChart, false);
m_animations = initPref(STR_AS_Animations, true).toBool();
m_squareWavePlots = initPref(STR_AS_SquareWave, false).toBool();
diff --git a/oscar/SleepLib/appsettings.h b/oscar/SleepLib/appsettings.h
index 86933be7..75a3237a 100644
--- a/oscar/SleepLib/appsettings.h
+++ b/oscar/SleepLib/appsettings.h
@@ -48,6 +48,7 @@ const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling";
const QString STR_AS_IncludeSerial = "IncludeSerial";
const QString STR_AS_MonochromePrinting = "PrintBW";
//const QString STR_AS_EventFlagSessionBar = "EventFlagSessionBar";
+const QString STR_AS_DisableDailyGraphTitles = "DisableDailyGraphTitles";
const QString STR_AS_GraphTooltips = "GraphTooltips";
const QString STR_AS_LineThickness = "LineThickness";
const QString STR_AS_LineCursorMode = "LineCursorMode";
@@ -141,6 +142,7 @@ public:
//! \brief Whether to print reports in black and white, which can be more legible on non-color printers
bool monochromePrinting() const { return getPref(STR_AS_MonochromePrinting).toBool(); }
//bool eventFlagSessionBar() const { return getPref(STR_AS_EventFlagSessionBar).toBool(); }
+ bool disableDailyGraphTitles() const { return getPref(STR_AS_DisableDailyGraphTitles).toBool(); }
//! \Allow disabling of sessions
//! \brief Whether to show graph tooltips
inline bool graphTooltips() const { return m_graphTooltips; }
@@ -203,6 +205,7 @@ public:
//! \brief Sets whether to print reports in black and white, which can be more legible on non-color printers
void setMonochromePrinting(bool b) { setPref(STR_AS_MonochromePrinting, b); }
// void setEventFlagSessionBar(bool b) { setPref(STR_AS_EventFlagSessionBar, b); }
+ void setDisableDailyGraphTitles(bool b) { setPref(STR_AS_DisableDailyGraphTitles, b); }
//! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode
void setGraphTooltips(bool b) { setPref(STR_AS_GraphTooltips, m_graphTooltips=b); }
//! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform)
diff --git a/oscar/preferencesdialog.cpp b/oscar/preferencesdialog.cpp
index 4be8d269..5f42c37b 100644
--- a/oscar/preferencesdialog.cpp
+++ b/oscar/preferencesdialog.cpp
@@ -242,6 +242,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
ui->includeSerial->setChecked(AppSetting->includeSerial());
ui->monochromePrinting->setChecked(AppSetting->monochromePrinting());
ui->eventFlagSessionBar->setChecked(profile->appearance->eventFlagSessionBar());
+ ui->disableDailyGraphTitles->setChecked(AppSetting->disableDailyGraphTitles());
ui->complianceHours->setValue(profile->cpap->complianceHours());
ui->clinicalMode->setChecked(profile->cpap->clinicalMode());
ui->clinicalTextEdit->setPlainText(clinicalHelp());
@@ -861,6 +862,7 @@ bool PreferencesDialog::Save()
AppSetting->setIncludeSerial(ui->includeSerial->isChecked());
AppSetting->setMonochromePrinting(ui->monochromePrinting->isChecked());
p_profile->appearance->setEventFlagSessionBar(ui->eventFlagSessionBar->isChecked());
+ AppSetting->setDisableDailyGraphTitles(ui->disableDailyGraphTitles->isChecked());
bool clicicalModeChanged = profile->cpap->clinicalMode() != ui->clinicalMode->isChecked() ;
p_profile->cpap->setClinicalMode(ui->clinicalMode->isChecked());
diff --git a/oscar/preferencesdialog.ui b/oscar/preferencesdialog.ui
index ccb04665..6dbc1989 100644
--- a/oscar/preferencesdialog.ui
+++ b/oscar/preferencesdialog.ui
@@ -2903,6 +2903,16 @@ Try it and see if you like it.
+ -
+
+
+ Needed for high Resolution displays where title overwrites labels
+
+
+ Disable daily graph titles
+
+
+
-