I have a QChartView which displays some 2D points which are representing each one a specific project I want to label each point with the project name AND NOT with it's x,y coordinates as the default behaviour
Is there any way to achieve override the function that creates or render the labels?
Why this could be difficult to achieve without changing the Qt source code
QXYSeries::setPointLabelsFormat wouldn't be of much help to you. It does indeed allow you to change the format of the labels, but the only variable part of it are the coordinates of the points.
All the drawing is done in the private part of the Qt classes. Here is the whole story:
The labels are drawn in the private part of QXYSeries (
painter->drawText(position, pointLabel);
):drawSeriesPointLabels is called from the paint method of ScatterChartItem (this class is not included in the official documentation):
The ScatterChartItem in turn is created in the private part of QScatterSeries and can't be substituted with a custom class:
What you might wanna try
Hide the original labels with
setPointLabelsVisible(false);
The labels will be drawn separately afterwards.Subclass QChartView and reimplement the
paintEvent
, invoking firstQChartView::paintEvent
and then calling a custom function (lets saydrawCustomLabels
), which is a modified version ofQXYSeriesPrivate::drawSeriesPointLabels
. By callingdrawCustomLabels
pass:QXYSeries::points
,Here is an example of how the
drawCustomLabels
might look like: