How to draw multiple line charts using one model
-
Header | A | B |
1 | 1 | 2 |
2 | 3 | 4 |
3 | 5 | 6 |
4 | 7 | 8 |
5 | 9 | 10 |I have a data model like this.
X axis is Header
The Y axis is the data of A and B respectively.
Is there a way to draw all charts from each of A and B using QVXYModelMapper?The peculiarity in my case is that the order in which the data comes in is
1,2,3,4,5,6, in A, B, excluding headers. come in order.