How to change graph bar colour?

image

Hi Nikhil,

Try this:

ColumnChart chart = ...
DataPoint point = chart.Series[0].DataPoints[3];
point.Fill.SetSolid(DrawingColor.FromName(DrawingColorName.Red));

I hope it helps.

Regards,
Mario