首页 > 开发 > 综合 > 正文

如何用C#在Excel中生成图表?

2024-07-21 02:26:55
字体:
来源:转载
供稿:网友

exc.charts.add(missing,missing,1,missing); 
    exc.activechart.charttype=excel.xlcharttype.xlcolumnclustered;
    exc.activechart.setsourcedata(worksheet.get_range("a1","b10"),excel.xlrowcol.xlcolumns);
    exc.activechart.location(excel.xlchartlocation.xllocationasobject,"sheet1");
    exc.activechart.hastitle=true;
    exc.activechart.charttitle.text="图表名称";
    exc.activechart.hasdatatable=false;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表