Hi I am trying to display various QstringList data from C++ in QML using ListView.

I currently can Display one QStringList data in ListView (QML)

Problem comes When for Example I have two or more QstringList's

1. QStringList TextData = {"One", "Two", "Three", "Four", "Five"}; (Declared in c++ )
2. QStringList NumData = {"1", "2", "3", "4", "5"}; (Declared in C++)
3. QStringList AlphaData = {"A", "B", "C", "D", "E"}; (Declared in C++)


I am Using QuickControls 2.5 My Expected outcome is

1 One A
2 Two B
3 Three C
4 Four D
5 Five E


I want to use above mentioned models which are created as QstringList's in C++.