QtChart: Single Axis-X with multiple Axis-Y
-
wrote on 10 Nov 2024, 09:07 last edited by
Hello All,
I'm new to Qt,I'm planning to create a ChartView with single axis X and multiple separate axis-Y stacked like below:
Could someone share me how to do it or some keywords that I can research? and is it possible?
(Currently I'm using ChartView QML+PySide6, but seems it is only able to show the 3 axises Y above in parallel |||___., not able to stack)Thank you so much!
-
wrote on 10 Nov 2024, 13:26 last edited by
I suspect the way to do this is to have three separate
ChartView
s and to align them as you require. You will probably need to play around with the margins. You can turn off the title on all but the bottom view by means of thetitleVisible
property of the axis. -
I suspect the way to do this is to have three separate
ChartView
s and to align them as you require. You will probably need to play around with the margins. You can turn off the title on all but the bottom view by means of thetitleVisible
property of the axis.wrote on 12 Nov 2024, 09:30 last edited by@Bob64 Thanks for your hint!
I'm trying this way...
1/3