How to enable zooming in QtCharts?

feedc0de

I want to be able to zoom in my QtCharts using the mouse.

The best way to zoom using the mouse would be by drawing rectangles and adjusting the view to the new smaller rectangle.

How Can I implement this in QtCharts?

Highcharts has a very similar example and it looks quite nice:

enter image description here

Lifeisabug

This functionallity is provided by QChartView.

QChartView v;
v.setRubberBand(QChartView::HorizontalRubberBand);

There is also zooming out functionality bound to your mouse. I don't remember which button though. Otherwise use the zooming functions in QChart.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to draw lines on an ImageView using canvas which are unaffected by zooming or scaling?

From Java

How do you disable viewport zooming on Mobile Safari?

From Dev

How to count number and which annotations shown on MapView, when zooming?

From Dev

OrbitControls - Can I enable/disable zooming dynamically?

From Dev

How do you use the Zooming UI in MSChart for .Net

From Dev

How can I detect whether a UIWebView is zooming?

From Dev

How to prevent an iframe from re-sizing when zooming

From Dev

Cocos2d:how to implement zooming by pinch

From Dev

How to get the boundaries of currently visible time scale (after panning and zooming)?

From Dev

here maps how to disable zooming on double click

From Dev

How to apply d3.js svg clipping after zooming

From Dev

Enable zooming in a uiscrollview with paging enabled and scrolling enabled

From Dev

How to track a zooming UIScrollView?

From Dev

How to prevent (bootstrap) fixed top navigation from zooming on mobile

From Dev

In D3 how to enable zooming only for particular path?

From Dev

How to handle HighCharts zooming with large data sets

From Dev

How can I stop background from moving when zooming out?

From Dev

How to stop ScrollView from scrolling when panning/zooming on a MapBox view?

From Dev

How to disable zooming for UIWebView in turbolinks-ios?

From Dev

how can i get plugins for gedit for zooming the text file?

From Dev

How to prevent a <div> element from being resized when zooming

From Dev

How can you disable zooming in Internet Explorer and Firefox?

From Dev

Intellij IDEA on mac: how to disable pinch gesture for zooming

From Dev

How to center a div after zooming

From Dev

how can i get plugins for gedit for zooming the text file?

From Dev

How to drag images / objects within Canvas after zooming / scaling them?

From Dev

How to allow zooming in and out of iframe in google chrome through touch screen

From Dev

How to prevent the background from zooming?

From Dev

How to perform zooming in FlipView control Windows 10

Related Related

  1. 1

    How to draw lines on an ImageView using canvas which are unaffected by zooming or scaling?

  2. 2

    How do you disable viewport zooming on Mobile Safari?

  3. 3

    How to count number and which annotations shown on MapView, when zooming?

  4. 4

    OrbitControls - Can I enable/disable zooming dynamically?

  5. 5

    How do you use the Zooming UI in MSChart for .Net

  6. 6

    How can I detect whether a UIWebView is zooming?

  7. 7

    How to prevent an iframe from re-sizing when zooming

  8. 8

    Cocos2d:how to implement zooming by pinch

  9. 9

    How to get the boundaries of currently visible time scale (after panning and zooming)?

  10. 10

    here maps how to disable zooming on double click

  11. 11

    How to apply d3.js svg clipping after zooming

  12. 12

    Enable zooming in a uiscrollview with paging enabled and scrolling enabled

  13. 13

    How to track a zooming UIScrollView?

  14. 14

    How to prevent (bootstrap) fixed top navigation from zooming on mobile

  15. 15

    In D3 how to enable zooming only for particular path?

  16. 16

    How to handle HighCharts zooming with large data sets

  17. 17

    How can I stop background from moving when zooming out?

  18. 18

    How to stop ScrollView from scrolling when panning/zooming on a MapBox view?

  19. 19

    How to disable zooming for UIWebView in turbolinks-ios?

  20. 20

    how can i get plugins for gedit for zooming the text file?

  21. 21

    How to prevent a <div> element from being resized when zooming

  22. 22

    How can you disable zooming in Internet Explorer and Firefox?

  23. 23

    Intellij IDEA on mac: how to disable pinch gesture for zooming

  24. 24

    How to center a div after zooming

  25. 25

    how can i get plugins for gedit for zooming the text file?

  26. 26

    How to drag images / objects within Canvas after zooming / scaling them?

  27. 27

    How to allow zooming in and out of iframe in google chrome through touch screen

  28. 28

    How to prevent the background from zooming?

  29. 29

    How to perform zooming in FlipView control Windows 10

HotTag

Archive