cha*_*ich 2 c++ qt5 qchart qchartview
我有一个 QChartView,它显示一些 2D 点,这些点代表每个特定项目我想用项目名称来标记每个点,而不是用它的 x,y 坐标作为默认行为
有没有办法实现覆盖创建或渲染标签的函数?
为什么在不更改 Qt 源代码的情况下很难实现这一点
QXYSeries::setPointLabelsFormat对您没有太大帮助。它确实允许您更改标签的格式,但它唯一可变的部分是点的坐标。
所有绘图都是在 Qt 类的私有部分中完成的。整个故事是这样的:
标签绘制在QXYSeries的私有部分( ):painter->drawText(position, pointLabel);
void QXYSeriesPrivate::drawSeriesPointLabels(QPainter *painter, const QVector<QPointF> &points,
const int offset)
{
if (points.size() == 0)
return;
static const QString xPointTag(QLatin1String("@xPoint"));
static const QString yPointTag(QLatin1String("@yPoint"));
const int labelOffset = offset + 2;
painter->setFont(m_pointLabelsFont);
painter->setPen(QPen(m_pointLabelsColor));
QFontMetrics fm(painter->font());
// m_points is used for the label here as it has the series point information
// points variable passed is used for positioning because it has the coordinates
const int pointCount = qMin(points.size(), m_points.size());
for (int i(0); i < pointCount; i++) {
QString pointLabel = m_pointLabelsFormat;
pointLabel.replace(xPointTag, presenter()->numberToString(m_points.at(i).x()));
pointLabel.replace(yPointTag, presenter()->numberToString(m_points.at(i).y()));
// Position text in relation to the point
int pointLabelWidth = fm.width(pointLabel);
QPointF position(points.at(i));
position.setX(position.x() - pointLabelWidth / 2);
position.setY(position.y() - labelOffset);
painter->drawText(position, pointLabel);
}
}
Run Code Online (Sandbox Code Playgroud)
从ScatterChartItem的paint方法中调用drawSeriesPointLabels(官方文档中不包含该类):
void ScatterChartItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option)
Q_UNUSED(widget)
if (m_series->useOpenGL())
return;
QRectF clipRect = QRectF(QPointF(0, 0), domain()->size());
painter->save();
painter->setClipRect(clipRect);
if (m_pointLabelsVisible) {
if (m_pointLabelsClipping)
painter->setClipping(true);
else
painter->setClipping(false);
m_series->d_func()->drawSeriesPointLabels(painter, m_points,
m_series->markerSize() / 2
+ m_series->pen().width());
}
painter->restore();
}
Run Code Online (Sandbox Code Playgroud)
ScatterChartItem又是在QScatterSeries的私有部分中创建的,并且不能用自定义类替换:
void QScatterSeriesPrivate::initializeGraphics(QGraphicsItem* parent)
{
Q_Q(QScatterSeries);
ScatterChartItem *scatter = new ScatterChartItem(q,parent);
m_item.reset(scatter);
QAbstractSeriesPrivate::initializeGraphics(parent);
}
Run Code Online (Sandbox Code Playgroud)
你可能想尝试什么
隐藏原来的标签,setPointLabelsVisible(false);
之后会单独绘制标签。
子类QChartView并重新实现paintEvent
,首先调用QChartView::paintEvent
,然后调用自定义函数(可以说drawCustomLabels
),这是 的修改版本QXYSeriesPrivate::drawSeriesPointLabels
。通过调用drawCustomLabels
pass:
QXYSeries::points
,下面是一个示例drawCustomLabels
:
void MyChartView::drawCustomLabels(QPainter *painter, const QVector<QPointF> &points, const int offset)
{
if (points.count() == 0)
return;
QFontMetrics fm(painter->font());
const int labelOffset = offset + 2;
painter->setFont(m_pointLabelsFont); // Use QXYSeries::pointLabelsFont() to access m_pointLabelsFont
painter->setPen(QPen(m_pointLabelsColor)); // Use QXYSeries::pointLabelsColor() to access m_pointLabelsColor
for (int n(0); n < points.count(); n++) {
QString pointLabel = "..."; // Set the desired label for the n-th point of the series
// Position text in relation to the point
int pointLabelWidth = fm.width(pointLabel);
QPointF position(points.at(n));
position.setX(position.x() - pointLabelWidth / 2);
position.setY(position.y() - labelOffset);
painter->drawText(position, pointLabel);
}
}
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
2174 次 |
最近记录: |