I'm having a problem with chart controls in VS 3.5 framework . I'm trying plot a graph with x- axis 0 and y-axis 1. But it results with a graph plotted (1,1)
I have a situation where i need to have one single bar with (0,1).
Chart1.Series[0].Points.Add(new DataPoint(0,1));
or
Chart1.Series[0].Points.AddXY(0,1);
Results:
Bar graph (1,1) instead of showing (0,1) point
I have added
Chart1.ChartAreas[""].AxisX.Minimum = 0;
Still Showing the same result ...
This is so frustrating : When i add one more point (1,1)
Eg:
Chart1.Series[0].Points.AddXY(0,1);
Chart1.Series[0].Points.AddXY(1,1);
Then it results :
bar graph with points (0,1) and (1,1) correctly