p; {
// sum1+=k;
// }
// else
// {
// sum2+=j;
// }
//创建x坐标表示月份
int[] Month = { 1, 2};
//创建y坐标表示销售额
double[] Count = { 120, 205 };
string strDataName = "";
string strData = "";
//创建表空间
ChartSpace myChartSpace = new ChartSpace();
//在图表空间内添加一个图表对象
ChChart myChart = myChartSpace.Charts.Add(0);
//设置每块饼的数据
for (int i = 0; i < Count.Length; i++)
{
strDataName += Month[i] + "\t";
strData += Count[i].ToString() + "\t";
}
//设置图表类型
myChart.Type = ChartChartTypeEnum.chChartTypePie;
//设置属性
myChart.HasLegend = true;
myChart.HasTitle = true;
myChart.Title.Caption = "年度总结";
//主题内容
myChart.SeriesCollection.Add(0);
&nb |