Hello,
I would like to inform you that the chart calculates the Min and Max values automatically if the AutoMax and AutoMin properties are set to True & formats the axis numbering to fit the current data set.
In your sample, you havn’t set the AxisY Min & Max properties, so the chart calculates them automatically by setting 420 as the Min value for AxisY & hence the bar is not shown.
You need to set the AxisY Min & Max properties manually in code :
c1Chart1.ChartArea.AxisY.Min = 400; c1Chart1.ChartArea.AxisY.Max = 570;
Regards,
Reema