Я не могу найти события прокрутки колеса мыши для увеличения масштаба изображения в QChartView

У меня есть QChartView в окне программы. Существуют массивы данных, которые правильно отображаются на графике как QLineSeries (кривые зависимости температуры от времени). Я не могу найти события mousewheel для ‘mousewheelup zoom-in’ и ‘mousewheeldown zoom-out’ в QChartView? Нужна возможность масштабирования только по вертикали, например setRubberBand(QChartView::VerticalRubberBand) но только с помощью колесика мыши. Нужна помощь

1

Решение

QChartView это QWidget чтобы вы могли реализовать эту логику, используя wheelEvent() метод:

#include <QApplication>
#include <QChartView>
#include <QLineSeries>
#include <random>

QT_CHARTS_USE_NAMESPACE

class ChartView : public QChartView
{
public:
using QChartView::QChartView;
enum DirectionZoom{
NotZoom,
VerticalZoom,
HorizontalZoom,
BothDirectionZoom = VerticalZoom | HorizontalZoom
};
DirectionZoom directionZoom() const{
return mDirectionZoom;
}
void setDirectionZoom(const DirectionZoom &directionZoom){
mDirectionZoom = directionZoom;
}

protected:
void wheelEvent(QWheelEvent *event)
{
if(chart() && mDirectionZoom != NotZoom){
const qreal factor = 1.001;
QRectF r = chart()->plotArea();
QPointF c = r.center();
qreal val = std::pow(factor, event->delta());
if(mDirectionZoom & VerticalZoom)
r.setHeight(r.height()*val);
if (mDirectionZoom & HorizontalZoom) {
r.setWidth(r.width()*val);
}
r.moveCenter(c);
chart()->zoomIn(r);
}
QChartView::wheelEvent(event);
}
private:
DirectionZoom mDirectionZoom = NotZoom;
};

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QChart *chart = new QChart();
chart->legend()->hide();
chart->setTitle("Simple line chart example");
std::random_device rd;
std::mt19937 rng(rd());
std::uniform_int_distribution<int> uni(0, 10);

for(size_t i=0; i< 5; i++){
QLineSeries *series = new QLineSeries();
for(size_t j=0; j < 10; j++){
*series << QPointF(j, uni(rng));
}
chart->addSeries(series);
}
chart->createDefaultAxes();

ChartView chartView(chart);
chartView.setDirectionZoom(ChartView::VerticalZoom);
chartView.setRenderHint(QPainter::Antialiasing);
chartView.resize(640, 480);
chartView.show();

return a.exec();
}
0

Другие решения

QChartView наследуется от QGraphicsView который предлагает QGraphicsSceneWheelEvent

0

По вопросам рекламы [email protected]