This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
I am trying to create my scatter graph dynamically. That means i want to add points on graph one bye one... as the data feeds from the server client is suppose to update with plotting points on graph. while debugging i am able to see the data points added in my item source but not able to see them on Graph as updated. and Graph is empty... Any Solution for this. |
|
|
Hello Make sure that you're setting the ItemsSource of the ScatterSeries to be an ObservableCollection so that the chart can listen for when data is dynamically added. If you are already doing this, or if it doesn't work, then there may be an issue with the way you have set up your chart. To solve this, set up the chart with pre-made data rather than adding it dynamically, just to make sure the data is being displayed. You can use the chart samples as a guide, or ask us if you need help with this. (Once you get this working, you can then switch back to adding data dynamically) - Jason |
|