Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1369
UltraChart Series and DataPoints?
posted

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,

Parents
No Data
Reply
  • 26458
    Offline posted

    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 XYSeries
    Add new XYDataPoint instances to the series.Points collection
    Add 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

Children
No Data