I’m using the chart control to display a scatter graph.
In some cases the data series consists of points with equal X values.
In these cases all I see is a single point (instead of a vertical line).
In addition, the location of the point is not based on the actual coordinates.
Altering the X value of a point solves this problem.
According to this entry, there isn’t much you can do.
Check weather you run in a case that would cause the problem and add something tiny to one of your points (double.Epsilon).
I once used something like this to go over my plots after a single point was set (slightly different problem, but you get the idea …):
Not elegant, but does the job.