#3081 Ensemble statistics curves. Option to turn on/off curve labels

This commit is contained in:
Bjørn Erik Jensen
2018-06-27 11:32:06 +02:00
parent 53a6694750
commit 2d96299d9d
3 changed files with 10 additions and 2 deletions

View File

@@ -45,6 +45,7 @@ public:
bool showP50Curve() const { return m_showP50Curve; }
bool showP90Curve() const { return m_showP90Curve; }
bool showMeanCurve() const { return m_showMeanCurve; }
bool showCurveLabels() const { return m_showCurveLabels; }
cvf::Color3f color() const { return m_color; }
void disableP10Curve(bool disable);
@@ -64,6 +65,7 @@ private:
caf::PdmField<bool> m_showP50Curve;
caf::PdmField<bool> m_showP90Curve;
caf::PdmField<bool> m_showMeanCurve;
caf::PdmField<bool> m_showCurveLabels;
caf::PdmField<cvf::Color3f> m_color;