How to change the MS Charts label font size in C#?

Viewed 10863

I have created few MS charts. Below code extracted from my application. It is working fine. but I want to increase the font size of label. How can I change the font size of label ?

Thanks.

 Series MIN = Chart2.Series.Add("Minimum");
 MIN.Points.DataBindXY(listVersion, MIN_list[j]);
 MIN.ChartType = SeriesChartType.Line;
 MIN.Color = Color.Red;
 MIN.BorderWidth = 3;
 MIN.IsValueShownAsLabel = true;
 MIN.LabelBackColor = System.Drawing.Color.Red;
 MIN.LabelForeColor = System.Drawing.Color.White;
2 Answers
Related