I made a simple chart by putting stack panels on a canvas and then filling the stack panels with lables according to the data given.However I am not very happy with the performance.
If I change the stack panels with listboxes, and instead of lables add strings, would it be faster to render the data? The data I need to show is a subset from a large array of lists of strings. When I move the index, I have to clear all the listboxes and fill them with the new data. Or is there a faster way to do it?
All my strings are of 4 characters. Is it possible to change the orientation to vertical so that each listbox shows something like this
A
A
A
A
B
B
B
B
C
C
C
C
D
D
D
D
etc... The strings are AAAA, BBBB, CCCC, DDDD.