Skip to content

Commit

Permalink
docfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jkriege2 committed Feb 6, 2024
1 parent ac8e7c6 commit a178a1f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
Binary file removed doc/images/jkqtpxygraphlabels.png
Binary file not shown.
Binary file added doc/images/jkqtpxygraphlabelsmixin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 17 additions & 4 deletions lib/jkqtplotter/graphs/jkqtpgraphlabelstylemixin.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ JKQTPLOTTER_LIB_EXPORT JKQTPGraphLabelBoxType String2JKQTPGraphLabelBoxType(cons
- styling for the box around the label
.
\image html jkqtpxygraphlabels.png
\image html jkqtpxygraphlabelsmixin.png
\see JKQTPGraphTextStyleMixin, JKQTPGraphLineStyleMixin, JKQTPGraphFillStyleMixin, JKQTPXYGraphLabels
*/
Expand Down Expand Up @@ -241,22 +241,35 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPGraphValueLabelStyleMixin: public JKQTPGraphTe

private:
/** \brief offset of the box rectangle to the actual data point location [pt], this is used for simple boxes and is a rather close distance (e.g. JKQTPGLSimpleBox)
*
* \image html jkqtpxygraphlabelsmixin.png
*
* \see setLabelOffset(), getLabelOffset(), setLabelOffsetWithConnector(), getLabelOffsetWithConnector()
*/
double m_labelOffset;
/** \brief offset of the box rectangle to the actual data point location [pt], this variant is used when a visible connector is shown (e.g. JKQTPGLSimpleBoxAndLine)
*
* \image html jkqtpxygraphlabelsmixin.png
*
* \see setLabelOffsetWithConnector(), getLabelOffsetWithConnector(), setLabelOffset(), getLabelOffset()
*/
double m_labelOffsetWithConnector;
/** \brief rounding radius of the box rectangle (<=0 -> no rounded rectangle) [pt] */
double m_labelBoxRounding;
/** \brief padding in x-direction between label and surrounding box [pt] */
/** \brief padding in x-direction between label and surrounding box [pt]
*
* \image html jkqtpxygraphlabelsmixin.png
*/
double m_labelXPadding;
/** \brief padding in y-direction between label and surrounding box [pt] */
/** \brief padding in y-direction between label and surrounding box [pt] *
*
* \image html jkqtpxygraphlabelsmixin.png
*/
double m_labelYPadding;
/** \brief indicates whether to draw a frame around the box */
/** \brief indicates whether to draw a frame around the box *
*
* \image html jkqtpxygraphlabelsmixin.png
*/
bool m_drawLabelBoxFrame;
/** \brief position of the label
*
Expand Down

0 comments on commit a178a1f

Please sign in to comment.