mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Merge pull request #8387 from OPM/qtcharts-summary-plots
Closes #8228 Major refactoring of summary plotting. Now possible to create plots both with Qwt and QtChart as plotting tool.
This commit is contained in:
committed by
GitHub
parent
d9bb82de91
commit
258fbddc10
@@ -68,7 +68,7 @@ public:
|
||||
void setContributeToLegend( bool contributeToLegend );
|
||||
|
||||
void setParentQwtPlotAndReplot( QwtPlot* plot );
|
||||
void setParentQwtPlotNoReplot( QwtPlot* plot );
|
||||
void setParentPlotNoReplot( QwtPlot* plot );
|
||||
void attachToQwt();
|
||||
void detachFromQwt();
|
||||
void reattachToQwt();
|
||||
@@ -80,26 +80,26 @@ private:
|
||||
|
||||
std::pair<double, double> depthsOfDepthType() const;
|
||||
|
||||
void addMarker( double posX,
|
||||
double depth,
|
||||
int size,
|
||||
RiuQwtSymbol::PointSymbolEnum symbolType,
|
||||
cvf::Color4f baseColor,
|
||||
const QString& label = QString( "" ),
|
||||
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
|
||||
Qt::Orientation labelOrientation = Qt::Horizontal,
|
||||
bool drawLine = false,
|
||||
bool contrastTextColor = false );
|
||||
QwtPlotItem* createMarker( double posX,
|
||||
double depth,
|
||||
int size,
|
||||
RiuQwtSymbol::PointSymbolEnum symbolType,
|
||||
cvf::Color4f baseColor,
|
||||
const QString& label = QString( "" ),
|
||||
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
|
||||
Qt::Orientation labelOrientation = Qt::Horizontal,
|
||||
bool drawLine = false,
|
||||
bool contrastTextColor = false );
|
||||
void addMarker( double posX,
|
||||
double depth,
|
||||
int size,
|
||||
RiuPlotCurveSymbol::PointSymbolEnum symbolType,
|
||||
cvf::Color4f baseColor,
|
||||
const QString& label = QString( "" ),
|
||||
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
|
||||
Qt::Orientation labelOrientation = Qt::Horizontal,
|
||||
bool drawLine = false,
|
||||
bool contrastTextColor = false );
|
||||
QwtPlotItem* createMarker( double posX,
|
||||
double depth,
|
||||
int size,
|
||||
RiuPlotCurveSymbol::PointSymbolEnum symbolType,
|
||||
cvf::Color4f baseColor,
|
||||
const QString& label = QString( "" ),
|
||||
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
|
||||
Qt::Orientation labelOrientation = Qt::Horizontal,
|
||||
bool drawLine = false,
|
||||
bool contrastTextColor = false );
|
||||
void addColumnFeature( double startX,
|
||||
double endX,
|
||||
double startDepth,
|
||||
|
||||
Reference in New Issue
Block a user