数据表格能够清晰的呈现数据信息,但是我们对于一些繁杂多变的数据想要很直观的看到数据变化走势或者数据的占比时,数据图表会更具代表性,并且在呈现数据信息上也更形象,也能获取更多纯数字信息所不能直接展现的信息。在下面的代码中,将向您展示如何通过使用免费的free spire xls for .net组件来实现。
原数据表格:
c#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
using spire.xls;
using system.drawing;
using system.drawing.imaging;
namespace createchart_xls
{
class program
{
static void main(string[] args)
{
//创建一个workbook类实例,加载excel文档
workbook workbook = new workbook();
workbook.loadfromfile(@"c:\users\administrator\desktop\sample.xlsx");
//获取第一个工作表
worksheet sheet = workbook.worksheets[0];
//设置工作表的名称
sheet.name = "柱状图";
sheet.gridlinesvisible = false;
//创建柱状图
chart chart = sheet.charts.add(excelcharttype.columnclustered);
//指定用于生成图表的数据区域
chart.datarange = sheet.range["a2:g6"];
chart.seriesdatafromrange = false;
//指定图表所在的位置
chart.leftcolumn = 1;
chart.toprow = 9;
chart.rightcolumn = 12;
chart.bottomrow = 26;
//设置图表的名称及字体格式
chart.charttitle = "上半年产品销售情况(单位:万美元)";
chart.charttitlearea.isbold = true;
chart.charttitlearea.size = 12;
//设置x轴坐标名称及字体格式
chart.primarycategoryaxis.title = "产品类别";
chart.primarycategoryaxis.font.isbold = true;
chart.primarycategoryaxis.titlearea.isbold = false;
//设置y轴坐标名称及字体格式
chart.primaryvalueaxis.title = "销售额";
chart.primaryvalueaxis.hasmajorgridlines = false;
chart.primaryvalueaxis.titlearea.textrotationangle = 90;
chart.primaryvalueaxis.minvalue = 0.5;
chart.primaryvalueaxis.titlearea.isbold = false;
//设置图例的位置
chart.legend.position = legendpositiontype.right;
//保存文档
workbook.savetofile("columnchart.xlsx", excelversion.version2013);
//加载生成图表后的excel文档
workbook.loadfromfile("columnchart.xlsx");
//遍历工作簿,诊断是否包含图表
image[] images = workbook.savechartasimage(sheet);
for (int i = 0; i < images.length; i++)
{
//将图表保存为图片
images[i].save(string.format("img-{0}.png", i), imageformat.png);
}
}
}
}
|
生成的图表文件及图片如下图所示:
组件获取地址:https://www.e-iceblue.cn/downloads/free-spire-xls-net.html
以上这篇c# 创建excel图表并保存为图片就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/Yesi/archive/2017/12/07/7999434.html