I'm trying to make the standard Qt barchart example scrollable and zoomable. I can use the scroll and zoom method of QChart
to define a custom Chart View class that re-implement the different mouse event. However, with this technique it's possible to scroll past the range of categories.
It'll be a simple fix if i could get the min max value on the y axis in "chart space" but i guess since the y axis is a QBarCategoryAxis
the only methods available return the string of the min max category.
I'm at a loss every search i come up with return results for the QValueAxis
api.