I was hoping on just using "this.chart.DataContext = { ... };" to refresh the data in my chart, however, I'm running into two issues with this:
1. Data only displays in the chart if the x-axis is categorical
2. I'm using up to 2048 data points and a categorical x-axis makes the tick marks illegible.
Unless there's a way to make the categorical axis to only display every hundredth tick mark, it looks like I'm forced into using linear axis for both the horizontal and vertical.
In referencing the newly released examples, the chart is bound to the "Source" collection in the separate ViewModelScatterSeries class. What would be the easiest way to update this information?
Using a different charting tool, I would create a new Observable collection, populate it, then assign it as the new item source. Is it possible to do this with the RadCartesian chart?