服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例

C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例

2022-02-15 16:29cnc C#

下面小编就为大家分享一篇C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

开发工具:vs2017

语言:c#

dotnet版本:.net framework 4.0及以上

使用的dll工具名称:gembox.spreadsheet.dll (版本:37.3.30.1185)

一、gembox.spreadsheet工具:

该dll是由gembox公司开发的基于excel功能的开发工具,该dll很轻量,且使用起来很方便,在这里推荐下来来使用。

下载地址:

gembox_spreadsheet.zip

本文就是使用该工具进行excel的写入操作。

二、创建excel

为了能使用该dll,必须在调用前写入以下代码:

?
1
spreadsheetinfo.setlicense("free-limited-key");

 

创建excel文件如下:

?
1
excelfile excel = new excelfile();

 

这里仅仅只是创建一个excel,代表的是excel整个文件,而保存该文件的代码如下:

?
1
excel.save("文件路径");

 

三、给excel添加一些属性

我们可以给excel添加一些诸如文档标题、作者、公司及备注等内容,实现这些内容的代码如下:

?
1
2
3
4
excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.title, title));
excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.author, "cnxy"));
excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.company, "cnxy"));
excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.comments, "by cnxy.website: http://www.cnc6.cn"));

四、给excel默认字体

这是给整个excel设置统一的字体,具体代码如下:

?
1
excel.defaultfontname = "times new roman";

 

五、添加一个sheet表格

要知道,excel是由sheet表格构成的,因此添加sheet表格的代码如下:

?
1
excelworksheet sheet = excel.worksheets.add("表格名称");

 

以上,已经在excel上添加了一个名为“表格名称”的数据表格。

六、给sheet添加密码保护

有时候,为了保护自己的excel不被篡改,需要设置一下sheet的密码,具体代码如下:

?
1
2
sheet.protectionsettings.setpassword("cnxy");
sheet.protected = true;

 

七、让网格线不可见

默认情况下,sheet的网格线是可见的,有时候,我们可以设置网格线不可见,具体代码如下:

?
1
sheet.viewoptions.showgridlines = false;

八、写入单元格

访问单元格的方式有三种,三种分别如下:

?
1
2
3
sheet.cells["a1"]
sheet.cells[0,0]
sheet.rows[0].cells[0]

以上三种方法都可以访问单元格,但如下写入单元格呢,其实方法很简单,如下:

?
1
sheet.cells["a1"].value= 内容

 

以上没有加双引号的原因是:内容不一定是字符串,有可能是数字、日期等。

九、单元格样式设置

单元格设置需要使用cellstyle对象,其代码如下:

?
1
2
3
4
5
6
7
8
9
10
cellstyle style = new cellstyle();
//设置水平对齐模式
style.horizontalalignment = horizontalalignmentstyle.center;
//设置垂直对齐模式
style.verticalalignment = verticalalignmentstyle.center;
//设置字体
style.font.size = 22 * pt; //pt=20
style.font.weight = excelfont.boldweight;
style.font.color = color.blue;
sheet.cells["a1"].style = style;

填充方式如下:

?
1
2
sheet.cells[24,1].style.fillpattern.patternstyle = fillpatternstyle.solid;
sheet.rows[24].cells[1].style.fillpattern.patternforegroundcolor = color.gainsboro;

 

设置边框如下:

?
1
style.borders.setborders(multipleborders.outside, color.black, linestyle.thin);

 

十、合并单元格

合并单元格需使用cellrange对象,我们可以从sheet.cells.getsubrange或getsubrangeabsolute获得,代码如下:

?
1
2
3
4
cellrange range = sheet.cells.getsubrange("b2", "j3");
range.value = "chart";
range.merged = true;
sheet.cells.getsubrangeabsolute(24, 1, 24, 9).merged = true;

十一、创建chart图表对象

使用的是linechart对象,代码如下:

?
1
linechart chart =(linechart)sheet.charts.add(charttype.line,"b4","j22");

 

以上意思是从b4到j22创建一个linechart对象。

设置图表标题不可见,代码如下:

?
1
chart.title.isvisible = false;

 

设置x轴与y轴的标题可见,代码如下:

?
1
2
chart.axes.horizontal.title.text = "time";
chart.axes.vertical.title.text = "voltage";

 

十二、给y轴设置属性

主要使用了chart.axes.verticalvalue返回的valueaxis对象,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
valueaxis axisy = chart.axes.verticalvalue;
//y轴最大刻度与最小刻度
axisy.minimum = -100;
axisy.maximum = 100;
//y轴主要与次要单位大小
axisy.majorunit = 20;
axisy.minorunit = 10;
//y轴主要与次要网格是否可见
axisy.majorgridlines.isvisible = true;
axisy.minorgridlines.isvisible = true;
//y轴刻度线类型
axisy.majortickmarktype = tickmarktype.cross;
axisy.minortickmarktype = tickmarktype.inside;

十三、附上完整的源代码

  1. using gembox.spreadsheet; 
  2. using gembox.spreadsheet.charts; 
  3. using system; 
  4. using system.collections.generic; 
  5. using system.diagnostics; 
  6. using system.drawing; 
  7. namespace spreadsheetchartdemo 
  8.  class program 
  9.  { 
  10.  const int pt = 20; 
  11.  const int length = 200; 
  12.  const string timesnewroman = "times new roman"
  13.  const string title = "spread sheet chart demo"
  14.  static void main(string[] args) 
  15.  { 
  16.  spreadsheetinfo.setlicense("free-limited-key"); 
  17.  excelfile excel = new excelfile(); 
  18.  //excel默认字体 
  19.  excel.defaultfontname = timesnewroman; 
  20.  //excel文档属性设置 
  21.  excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.title, title)); 
  22.  excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.author, "cnxy")); 
  23.  excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.company, "cnxy")); 
  24.  excel.documentproperties.builtin.add(new keyvaluepair<builtindocumentproperties, string>(builtindocumentproperties.comments, "by cnxy.website: http://www.cnc6.cn")); 
  25.  //新建一个sheet表格 
  26.  excelworksheet sheet = excel.worksheets.add(title); 
  27.  //设置表格保护 
  28.  sheet.protectionsettings.setpassword("cnxy"); 
  29.  sheet.protected = true
  30.  //设置网格线不可见 
  31.  sheet.viewoptions.showgridlines = false
  32.  //定义一个b2-g3的单元格范围 
  33.  cellrange range = sheet.cells.getsubrange("b2""j3"); 
  34.  range.value = "chart"
  35.  range.merged = true
  36.  //定义一个单元格样式 
  37.  cellstyle style = new cellstyle(); 
  38.  //设置边框 
  39.  style.borders.setborders(multipleborders.outside, color.black, linestyle.thin); 
  40.  //设置水平对齐模式 
  41.  style.horizontalalignment = horizontalalignmentstyle.center; 
  42.  //设置垂直对齐模式 
  43.  style.verticalalignment = verticalalignmentstyle.center; 
  44.  //设置字体 
  45.  style.font.size = 22 * pt; 
  46.  style.font.weight = excelfont.boldweight; 
  47.  style.font.color = color.blue; 
  48.  range.style = style; 
  49.  //增加chart 
  50.  linechart chart = (linechart)sheet.charts.add(charttype.line,"b4","j22"); 
  51.  chart.title.isvisible = false
  52.  chart.axes.horizontal.title.text = "time"
  53.  chart.axes.vertical.title.text = "voltage"
  54.  valueaxis axisy = chart.axes.verticalvalue; 
  55.  //y轴最大刻度与最小刻度 
  56.  axisy.minimum = -100; 
  57.  axisy.maximum = 100; 
  58.  //y轴主要与次要单位大小 
  59.  axisy.majorunit = 20; 
  60.  axisy.minorunit = 10; 
  61.  //y轴主要与次要网格是否可见 
  62.  axisy.majorgridlines.isvisible = true
  63.  axisy.minorgridlines.isvisible = true
  64.  //y轴刻度线类型 
  65.  axisy.majortickmarktype = tickmarktype.cross; 
  66.  axisy.minortickmarktype = tickmarktype.inside; 
  67.  random random = new random(); 
  68.  double[] data = new double[length]; 
  69.  for (int i=0;i< length; i++) 
  70.  { 
  71.  if( random.next(0,100) > 50) 
  72.  data[i] = random.nextdouble() * 100; 
  73.  else 
  74.  data[i] = -random.nextdouble() * 100; 
  75.  } 
  76.  chart.series.add("random", data); 
  77.  //尾部信息 
  78.  range = sheet.cells.getsubrange("b23""j24"); 
  79.  range.value = $"write time:{datetime.now:yyyy-mm-dd hh:mm:ss} by cnxy"
  80.  range.merged = true
  81.  //b25(三种单元格模式) 
  82.  sheet.cells["b25"].value = "http://www.cnc6.cn"
  83.  sheet.cells[24,1].style.fillpattern.patternstyle = fillpatternstyle.solid; 
  84.  sheet.rows[24].cells[1].style.fillpattern.patternforegroundcolor = color.gainsboro; 
  85.  //b25,j25 
  86.  sheet.cells.getsubrangeabsolute(24, 1, 24, 9).merged = true
  87.  string filepath = $@"{environment.currentdirectory}sheetchart.xlsx"
  88.  try 
  89.  { 
  90.  excel.save(filepath); 
  91.  process.start(filepath); 
  92.  console.writeline("write successfully"); 
  93.  } 
  94.  catch(exception ex) 
  95.  { 
  96.  console.writeline(ex); 
  97.  } 
  98.  console.write("press any key to continue."); 
  99.  console.readkey(); 
  100.  } 
  101.  } 

十四、生成的excel

演示的excel下载地址:

sheetchart.zip

C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例

C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例

十五、生成的exe

下载地址如下:

spreadsheetchartdemo.zip

运行结果如下:

C#使用Gembox.SpreadSheet向Excel写入数据及图表的实例

以上这篇c#使用gembox.spreadsheet向excel写入数据及图表的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/cncc/archive/2017/12/06/7992383.html

延伸 · 阅读

精彩推荐
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25