Hi,
I had this learning curve on infragistics wpf controls. The xamChart allows to create multiple series and datapoints within at runtime. Then you can assign each datapoint an x and y coordinate, and radius and you will have your scatter point on the chart. How do I add these scatter points in UltraChart?
Thanks,
The .Net chart doesn't have a notion of ChartParameters, like the WPF chart does. In order to add a series for a scatter chart you need to:Create a new XYSeriesAdd new XYDataPoint instances to the series.Points collectionAdd the series to ultrachart.Series collection
Scatter charts don't use different radii, so if you need to specify a radius, try using a bubble chart instead. Bubble charts use XYZSeries and XYZDataPoints