我在c#中有一个asp饼图 我知道如何在馅饼中显示百分比 或显示值编号
但是如何在同一个饼图中显示它们
答案 0 :(得分:3)
foreach(DataPoint p in yourChart.Series["yourseries"].Points)
{
p.Label="#PERCENT\n#VALX";
}
答案 1 :(得分:0)
fra9001提供的答案很好用。 必须说,应该在prerendercomplete事件上编写代码。 在VB中,我用到了:
Private Sub test2_PreRenderComplete(sender As Object, e As EventArgs) Handles Me.PreRenderComplete
For Each p In Chart1.Series(0).Points
p.Label = "#PERCENT\n#VALX"
Next
End Sub