我MSChart Control
在我的一个VB.NET
项目中使用过。我决定在饼图中显示下表所示的数据。
但是标签相互重叠以摆脱它我尝试了“<strong>智能标签”属性,如下所示。
Chart1.Series("Default").SmartLabelStyle.Enabled = True
Chart1.Series("Default").SmartLabelStyle.AllowOutsidePlotArea = LabelOutsidePlotAreaStyle.No
Chart1.Series("Default").SmartLabelStyle.CalloutLineAnchorCapStyle = LineAnchorCapStyle.None
Chart1.Series("Default").SmartLabelStyle.CalloutLineColor = Color.Red
Chart1.Series("Default").SmartLabelStyle.CalloutLineWidth = 1
Chart1.Series("Default").SmartLabelStyle.CalloutStyle = LabelCalloutStyle.None
但这对我没有帮助……尽管它根据以下屏幕截图向我显示了输出。
我必须使用哪些属性来摆脱它?……
编辑:
如果我确实设置了自定义属性PieLabelStyle=Outside
,它没有任何区别,正如您在下面的屏幕截图中看到的那样。
请帮我..