mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2025-01-26 15:39:09 +08:00
documentation fixed
This commit is contained in:
parent
9dbfd6e173
commit
eb9a1d5a92
@ -126,22 +126,22 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPFilledCurveYErrorGraph: public JKQTPFilledCurv
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*! \brief This implements filled curve plots where the area is filled between two data columns for each x-value
|
/** \brief This implements filled curve plots where the area is filled between two data columns for each x-value
|
||||||
\ingroup jkqtplotter_filledgraphs
|
* \ingroup jkqtplotter_filledgraphs
|
||||||
|
*
|
||||||
With setDrawlines(false):
|
* With \c setDrawlines(false):
|
||||||
\image html JKQTPFilledVerticalRangeGraph.png
|
*
|
||||||
|
* \image html JKQTPfilledVerticalRangeGraph.png
|
||||||
With setDrawlines(true):
|
*
|
||||||
\image html JKQTPFilledVerticalRangeGraph_WithLines.png
|
* With \c setDrawlines(true):
|
||||||
|
*
|
||||||
|
* \image html JKQTPfilledVerticalRangeGraph_WithLines.png
|
||||||
|
*
|
||||||
\see \ref JKQTPlotterDateTimeAxes
|
* \see \ref JKQTPlotterDateTimeAxes
|
||||||
*/
|
*/
|
||||||
class JKQTPLOTTER_LIB_EXPORT JKQTPFilledVerticalRangeGraph: public JKQTPXYGraph, public JKQTPGraphLineStyleMixin, public JKQTPGraphFillStyleMixin {
|
class JKQTPLOTTER_LIB_EXPORT JKQTPFilledVerticalRangeGraph: public JKQTPXYGraph, public JKQTPGraphLineStyleMixin, public JKQTPGraphFillStyleMixin {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
/** \brief class constructor */
|
/** \brief class constructor */
|
||||||
JKQTPFilledVerticalRangeGraph(JKQTBasePlotter* parent=nullptr);
|
JKQTPFilledVerticalRangeGraph(JKQTBasePlotter* parent=nullptr);
|
||||||
/** \brief class constructor */
|
/** \brief class constructor */
|
||||||
@ -175,17 +175,15 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPFilledVerticalRangeGraph: public JKQTPXYGraph,
|
|||||||
bool getDrawLine() const;
|
bool getDrawLine() const;
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/** \brief the column that contains the second y-component of the range */
|
/** \brief the column that contains the second y-component of the range */
|
||||||
int yColumn2;
|
int yColumn2;
|
||||||
|
|
||||||
/** \brief indicates whether to draw a line or not */
|
/** \brief indicates whether to draw a line on the circumference of the described area (i.e. along the data points from \c xColumn and \c yColumn as well as \c xColumn and \c yColumn2 or not */
|
||||||
bool drawLine;
|
bool drawLine;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif // jkqtpgraphsfilledcurve_H
|
#endif // jkqtpgraphsfilledcurve_H
|
||||||
|
Loading…
Reference in New Issue
Block a user