Anyone have any sample code of scatter chart with the current infragistics version?
The documentation isn't very good on this.
using System;
using System.Windows.Forms;
using Infragistics.Win.UltraWinChart;
using Infragistics.UltraChart.Shared.Styles;
using Infragistics.UltraChart.Resources.Appearance;
public partial class Form1 : Form
{
theChart.ChartType = ChartType.ScatterChart;
mySeries.Points.Add(new XYDataPoint(1.0, 1.0, "Point A", false));
theChart.Series.Add(mySeries);
this.Controls.Add(theChart);
}