#4207 Allow changing color of plot symbol edges and update cross plots

* Cross plots have same color as the symbol itself.
This commit is contained in:
Gaute Lindkvist
2019-03-20 13:30:27 +01:00
parent f14cd3f1f7
commit ba7830e53c
3 changed files with 31 additions and 3 deletions

View File

@@ -62,6 +62,8 @@ public:
void setLineStyle(RiuQwtPlotCurve::LineStyleEnum lineStyle);
void setSymbol(RiuQwtSymbol::PointSymbolEnum symbolStyle);
RiuQwtSymbol::PointSymbolEnum symbol();
cvf::Color3f symbolEdgeColor() const;
void setSymbolEdgeColor(const cvf::Color3f& edgeColor);
void setSymbolSkipDistance(float distance);
void setSymbolLabel(const QString& label);
void setSymbolSize(int sizeInPixels);
@@ -140,6 +142,7 @@ protected:
caf::PdmField<LineStyle> m_lineStyle;
caf::PdmField<CurveInterpolation> m_curveInterpolation;
RiuQwtSymbol::LabelPosition m_symbolLabelPosition;
caf::PdmField<cvf::Color3f> m_symbolEdgeColor;
};