如何在mschart中设置标签大小?

时间:2012-09-29 17:50:34

标签: vb.net mschart

这可能很容易实现它因为我在这里找不到任何帖子。如何在客户端或服务器端的mschart中设置标签大小?设置LabelAutoFitMinFontSize在我的情况下不起作用。我正在使用webform并继承我的图表,

enter image description here

我需要增加x轴和值标签的字体大小。感谢。

1 个答案:

答案 0 :(得分:2)

我在我的示例图表上尝试了这个代码并且确实有效。

Chart1.Series(0).IsValueShownAsLabel = True
Chart1.Series(0).Font = New Font("Times", 30)  ' will change value label font
Chart1.ChartAreas(0).AxisX.LabelStyle.Font = New Font("Verdana", 28)  ' will change x-axis label font style