You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the most widely used data formats is JSON, but working with it can be challenging. This application enables the creation of charts and the user-friendly processing of JSON data.
2
+
3
+
Four easy steps can be used to quickly display data from a JSON web service using the WPF Charts simplicity:
4
+
1. Retrieve the data from json string or web service using HttpClient.
5
+
2. Deserialize the JSON data to create a list of ExpandoObject.
6
+
3. List of ExpandoObjects to DataTable Conversion
7
+
4. Set the ItemsSource property of the chart to the data table along with the binding path of the X and Y in the Chart Series.
0 commit comments