Hi
My itemsSource for a ScatterPointSeries is IList<Tuple<string,int>>
I want to have the x axis to be the individual string items. I am not sure how to accomplish this. I tried to swap the horizontalAxis CategoryAxis but that doesnt seem to do anything.
my data looks somewhat like this: (IList<Tuple<string,int>>)
apples,2
oranges,5
pears,3
apples,10 (have a second point in the x-value apples)
etc
Please advice how this can be done.
I didnt try to use the Charting 2d scatter graph yet - is this scenario possible with that instead of the chartview??
My xaml i am using