diff --git a/doc/dox/whatsnew.dox b/doc/dox/whatsnew.dox
index 102d86b484..bb89e7faea 100644
--- a/doc/dox/whatsnew.dox
+++ b/doc/dox/whatsnew.dox
@@ -127,7 +127,7 @@ Changes, compared to \ref page_whatsnew_V4_0_0 "v4.0.0" include:
NEW/REWORKED all functions in JKQTBasePlotter are re-entrant, i.e. different instances can be used from different threads in parallel (although there is some overhead due to shared caches between the threads!). This is demonstrated and discussed in \ref JKQTPlotterMultiThreaded .
NEW: allow linear-gradient(), currentcolor, ... in brush definitions of style.ini-file ... and using it is cyberpunk and dark styles
NEW: style simple_noaxes.ini
- NEW: JKQTPXYGraphLabels which can draw a label next to each datapoint in the given x/y-dataset. The labels can be x-/y- or x&y-coordinates or custom, then defined by a user-supplied functor (+example \ref JKQTPlotterGraphLabels)
+ NEW: JKQTPXYGraphLabels which can draw a label next to each datapoint in the given x/y-dataset. The labels can be x-/y- or x&y-coordinates or custom, then defined by a user-supplied functor (+example \ref JKQTPlotterGraphLabelsExample)
JKQTMathText:
diff --git a/examples/graphlabels/README.md b/examples/graphlabels/README.md
index 9f8fede35d..84475cb93c 100644
--- a/examples/graphlabels/README.md
+++ b/examples/graphlabels/README.md
@@ -1,4 +1,4 @@
-# Example (JKQTPlotter): Simple Graph Labels Example {#JKQTPlotterGraphLabels}
+# Example (JKQTPlotter): Simple Graph Labels Example {#JKQTPlotterGraphLabelsExample}
This project (see [`graphlabels`](https://github.com/jkriege2/JKQtPlotter/tree/master/examples/graphlabels) demonstrates the use of JKQTPXYGraphLabels to add labels to the datapoints of a graph.
The source code of the main application is (see [`graphlabels.cpp`](https://github.com/jkriege2/JKQtPlotter/tree/master/examples/graphlabels/graphlabels.cpp).
diff --git a/examples/graphlabels/graphlabels.cpp b/examples/graphlabels/graphlabels.cpp
index 9590293243..623f7d7968 100644
--- a/examples/graphlabels/graphlabels.cpp
+++ b/examples/graphlabels/graphlabels.cpp
@@ -1,7 +1,7 @@
/** \example graphlabels.cpp
* Shows how to draw datapoint labels using JKQTPXYGraphLabels
*
- * \ref JKQTPlotterGraphLabels
+ * \ref JKQTPlotterGraphLabelsExample
*/
#include "jkqtpexampleapplication.h"
diff --git a/lib/jkqtplotter/graphs/jkqtpgraphlabels.h b/lib/jkqtplotter/graphs/jkqtpgraphlabels.h
index ecc92fecfd..35bd396aab 100644
--- a/lib/jkqtplotter/graphs/jkqtpgraphlabels.h
+++ b/lib/jkqtplotter/graphs/jkqtpgraphlabels.h
@@ -97,7 +97,7 @@ class JKQTPDatastore;
- setXDefaultConverter(), setXDefaultPrecision(), setXBelowIsZero(), ... (all these exist in X and Y variants!)
.
- \see \ref JKQTPlotterGraphLabels
+ \see \ref JKQTPlotterGraphLabelsExample
*/
class JKQTPLOTTER_LIB_EXPORT JKQTPXYGraphLabels: public JKQTPXYGraph, public JKQTPGraphValueLabelStyleMixin, public JKQTPXYLabelsGeneratorMixin {