#3826 Summary curves. Draw error bars in front of all curves except from observed data curves

This commit is contained in:
Bjørn Erik Jensen
2018-12-05 09:35:05 +01:00
parent 968da84051
commit 6a2484c40e
3 changed files with 15 additions and 13 deletions

View File

@@ -63,6 +63,16 @@ public:
STYLE_DASH_DOT
};
// Z index. Higher Z is painted in front
enum ZIndex
{
Z_ENSEMBLE_CURVE = 100,
Z_ENSEMBLE_STAT_CURVE = 200,
Z_SINGLE_CURVE_NON_OBSERVED = 300,
Z_ERROR_BARS = 400,
Z_SINGLE_CURVE_OBSERVED = 500
};
public:
explicit RiuQwtPlotCurve(const QString &title = QString::null);
~RiuQwtPlotCurve() override;