Line Series with two points the same.
Posted: Fri Jul 18, 2008 12:15 am
I have a Line series with Points visible that contains only two points.
If the points happen to be the same value the chart does not draw any points. Example) Add a Line series to a chart and make the points visible. In the Form constructor add the two points.
public Form1()
{
InitializeComponent();
line1.Add(5, 5);
line1.Add(5, 5);
}
The chart does not display any points but if you only add one point the chart draws the one point correctly.
If the points happen to be the same value the chart does not draw any points. Example) Add a Line series to a chart and make the points visible. In the Form constructor add the two points.
public Form1()
{
InitializeComponent();
line1.Add(5, 5);
line1.Add(5, 5);
}
The chart does not display any points but if you only add one point the chart draws the one point correctly.