C# 使用OWC生成图表
2009-06-11 08:32:00 来源:WEB开发网最近做一个项目,按客户需求,需要生成一些报表,OWC是比较合适的组件.
1、如何安装OWC组件
OWC是Office Web Compents的缩写,即Microsoft的Office Web组件,包含SpreadSheet组件、Chart组件、PioTable组件和Data Source组件。
只要装了 Office 办公软件 ,在 C:\Program Files\MSECache\owc11_12 中会有一个安装文件: OWC11.msi (offic 2003)
2、安装完成后,新建一个工程,再添加引用...-->com--> Microsoft Office Web components 11.0 在bin文件夹中:Interop.OWC10.dll
引用空间:using Microsoft.Office.Interop.Owc11;
private void MakeLineChart()
{
//Y坐标轴
string[] DataName = { "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" };
//第一条曲线的数据
int[] Data = { 0, 10, 20, 100, 40, 50, 60 };
//第二条曲线的数据
int[] Data1 = { 100, 50, 41, 86 };
//第三条曲线的数据
int[] Data2 = { 10, 50, 100, 30, 50, 60 };
string strValue1 = "";
string strValue = "";
string strValue2 = "";
string strCateory = "";
//循环取得数据并格式化为OWC10需要的格式,(加'\t')
for (int i = 0; i < DataName.Length; i++)
{
strCateory += DataName[i] + '\t';
}
for (int i = 0; i < Data.Length; i++)
{
strValue += Data[i].ToString() + '\t';
更多精彩
赞助商链接