How can I format chart label? I need to see only 2 digits after point.
I try chart.ChartAreas.First().AxisY.LabelStyle.Format = "#.##"; and 0.00
Also I try to set Series[0].LabelFormat = "0.00" and #.##
and without success.
What is wrong?

try this
chart.ChartAreas.First().AxisY.LabelStyle.Format = "F2";
and the details on this page http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx