Hi Ed,
Generally you need to switch the X axis to linear scale and provide X values to the series in question. Almost all Cartesian series support XY Scatter mode (with the exception of few specific series such as Kagi/Renko). For example:
NChart chart = nChartControl1.Charts[0];
NLineSeries line = new NLineSeries();
line.DataLabelStyle.Visible = false;
line.UseXValues = true;
line.Values.Add(10);
line.XValues.Add(10);
line.Values.Add(23);
line.XValues.Add(20);
line.Values.Add(18);
line.XValues.Add(35);
chart.Series.Add(line);
chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator = new NLinearScaleConfigurator();
Produces a simple XY scatter line, with a linear X axis.
Hope this helps -let me know if you have any questions.
Best regards,
Bob