改成下面代码
''生成饼状图
Dim Chart As WinForm.Chart '定义一个图表变量
Dim Series As WinForm.ChartSeries '定义一个图系变量
Dim t1 As dataTable = t '定义一个变量t引用数据表
Dim sm As Integer = t1.Compute("Sum(人数)") '计算总数量
Chart= Forms("统计窗口").Controls("Chart2") ' 引用窗口中的图表
Chart.SeriesList.Clear() '清除图表原来的图系
Chart.VisualEffect = True '加上这一行,让你的图表更漂亮
Chart.ChartType = ChartTypeEnum.Pie '图表1类型改为Bar(条形)
For Each r As dataRow In t1.dataRows
Series = Chart.SeriesList.Add() '增加一个图系
Series.Length = 1 '一个系列只能包括一个值
Series.Text = r("年龄段") & "(" & r("人数") & ")" '设置图系的标题
Series.Y(0) = r("人数") '指定值
Series.DataLabelText = Math.Round(r("人数")*100/sm,2) & "%" '计算百分比
Next
Chart.LegendVisible = True '显示图列
Chart.LegendCompass= CompassEnum.East '图列显示在东方(右方)