gpt4 book ai didi

c++ - 使用鼠标滚轮缩放 QChartView 的 x 轴

转载 作者:搜寻专家 更新时间:2023-10-31 00:53:26 25 4
gpt4 key购买 nike

在我的应用程序中,我使用 QChart 来显示折线图。不幸的是,Qt Charts 不支持使用鼠标滚轮缩放和通过鼠标滚动等基本功能。是的,有 RubberBand 功能,但仍然不支持滚动等,这对用户来说不是那么直观。此外,我只需要缩放 x 轴,某种 setRubberBand(QChartView::Horizo​​ntalRubberBand) 但使用鼠标滚轮。到目前为止,在深入了解 QChartView 之后,我使用了以下解决方法:

class ChartView : public QChartView {
protected:
void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE
{
QRectF rect = chart()->plotArea();
if(event->angleDelta().y() > 0)
{
rect.setX(rect.x() + rect.width() / 4);
rect.setWidth(rect.width() / 2);
}
else
{
qreal adjustment = rect.width() / 2;
rect.adjust(-adjustment, 0, adjustment, 0);
}
chart()->zoomIn(rect);
event->accept();
QChartView::wheelEvent(event);
}
}

这行得通,但放大然后缩小不会导致相同的结果。有一个小偏差。调试后我发现 chart()->plotArea() 总是返回相同的矩形,所以这个解决方法是无用的。

有什么方法可以只获取可见区域的矩形吗?或者有人可以指出正确的解决方案如何通过鼠标为 QChartView 进行缩放/滚动?

最佳答案

您可以使用 zoom() 而不是使用 zoomIn()zoomOut(),如下所示:

class ChartView : public QChartView {
protected:
void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE
{
qreal factor = event->angleDelta().y() > 0? 0.5: 2.0;
chart()->zoom(factor);
event->accept();
QChartView::wheelEvent(event);
}
};

关于zoomIn()zoomOut(),具体指的是什么坐标还不清楚,我还在投资中,等我有更多的信息再说更新我的答案。

更新:

据我观察,其中一个问题是 float 的乘法,另一个是定位图形的中心,为了不出现这些问题,我的解决方案是重置缩放,然后设置更改:

class ChartView : public QChartView {
qreal mFactor=1.0;
protected:
void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE
{
chart()->zoomReset();

mFactor *= event->angleDelta().y() > 0 ? 0.5 : 2;

QRectF rect = chart()->plotArea();
QPointF c = chart()->plotArea().center();
rect.setWidth(mFactor*rect.width());
rect.moveCenter(c);
chart()->zoomIn(rect);

QChartView::wheelEvent(event);
}
};

关于c++ - 使用鼠标滚轮缩放 QChartView 的 x 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48623595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com