c#中显示Excel控件使用说明

news/2024/11/28 21:40:51/

最近做一个项目,按客户需求,需要生成一些报表,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 XP Web Components  在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';

        }

        for (int i = 0; i < Data1.Length; i++)

        {

            strValue1 += Data1[i].ToString() + '\t';

        }

        for (int i = 0; i < Data2.Length; i++)

        {

            strValue2 += Data2[i].ToString() + '\t';

        }

        OWC10.ChartSpaceClass mySpace = new OWC10.ChartSpaceClass();//创建ChartSpace对象来放置图表

        OWC10.ChChart myChart = mySpace.Charts.Add(0);//在ChartSpace对象中添加图表,Add方法返回chart对象

        myChart.Type = OWC10.ChartChartTypeEnum.chChartTypeColumnClustered;//指定图表的类型为线性图

        myChart.HasLegend = true;//指定图表是否需要图例

        myChart.HasTitle = true;//给定标题

        myChart.Title.Caption = "交易曲线图";  //图表名称

        //给定X\Y轴的图示说明

        myChart.Axes[0].HasTitle = true;

        myChart.Axes[0].Title.Caption = "数量";  //横轴名称

        myChart.Axes[1].HasTitle = true;

        myChart.Axes[1].Title.Caption = "日期"; //纵轴名称

        //添加一个series(序列)

        myChart.SeriesCollection.Add(0);

        //给定series的名字

        myChart.SeriesCollection[0].SetData(OWC10.ChartDimensionsEnum.chDimSeriesNames, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, "购买");

        //给定series的分类

        myChart.SeriesCollection[0].SetData(OWC10.ChartDimensionsEnum.chDimCategories, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strCateory);

        //给定具体值

        myChart.SeriesCollection[0].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue);

        //添加一个series

        myChart.SeriesCollection.Add(1);

        //给定series的名字

        myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimSeriesNames, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, "出售");

        //给定series的分类

        myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimCategories, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strCateory);

        //给定具体值

        myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue1);

        //添加一个series

        myChart.SeriesCollection.Add(2);

        //给定series的名字

        myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimSeriesNames, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, "总成交");

        //给定series的分类

        myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimCategories, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strCateory);

        //给定具体值

        myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue2);

        //输出成GIF文件

        string strAbsolutePath = (Server.MapPath(".")) + @"\Images\tempChart.gif";

        Response.Write(strAbsolutePath);

        mySpace.ExportPicture(strAbsolutePath, "GIF", 300, 300); //输出图表

        //创建GIF文件的相对路径

        string strRelativePath = "Images/tempChart.gif";

        //把图片添加到Image

        Image1.ImageUrl = strRelativePath;

    }

//图表类型枚举

OWC11.ChartChartTypeEnum[] chartTypes = new OWC11.ChartChartTypeEnum[]{

ChartChartTypeEnum.chChartTypeColumnClustered,

  ChartChartTypeEnum.chChartTypeColumn3D,

  ChartChartTypeEnum.chChartTypeBarClustered,

  ChartChartTypeEnum.chChartTypeBar3D,

  ChartChartTypeEnum.chChartTypeArea,

  ChartChartTypeEnum.chChartTypeArea3D,

  ChartChartTypeEnum.chChartTypeDoughnut,

  ChartChartTypeEnum.chChartTypeLineStacked,

  ChartChartTypeEnum.chChartTypeLine3D,

  ChartChartTypeEnum.chChartTypeLineMarkers,

  ChartChartTypeEnum.chChartTypePie,

  ChartChartTypeEnum.chChartTypePie3D,

  ChartChartTypeEnum.chChartTypeRadarSmoothLine,

  ChartChartTypeEnum.chChartTypeSmoothLine};

            string[] chartTypesCh = new string[] { "垂直柱状统计图", "3D垂直柱状统计图", "水平柱状统计图", "3D水平柱状统计

图", "区域统计图", "3D区域统计图", "中空饼图", "折线统计图", "3D折线统计图", "折线带点统计图", "饼图", "3D饼图", "网状统计

图", "弧线统计图" };

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ajaxchen_615/archive/2009/06/10/4258307.aspx

转载于:https://www.cnblogs.com/Alum/archive/2010/04/14/3587989.html


http://www.ppmy.cn/news/380632.html

相关文章

【Excel】如何给Excel表格(文档)加密/上锁

目录 0.环境 1.操作步骤 若只输入了【打开权限密码】 若只输入了【修改权限密码】 若同时输入两种密码 0.环境 windows excel2021版 适用情景&#xff1a; 希望给别人提供文档时&#xff0c;需要用密码打开这个文档&#xff0c;加密又分为【打开时加密】和【修改时加密…

gtk实现spice剪切板

重要的函数&#xff1a; void spice_main_channel_clipboard_selection_grab(SpiceMainChannel *channel, guint selection, guint32 *types, int ntypes); 抓取剪切板 void spice_main_channel_clipboard_selection_release(SpiceMainChannel *channel, guint selection); 剪…

论文可视化分析神器——CiteSpace和vosviewer

文献计量学是指用数学和统计学的方法&#xff0c;定量地分析一切知识载体的交叉科学。它是集数学、统计学、文献学为一体&#xff0c;注重量化的综合性知识体系。特别是&#xff0c;信息可视化技术手段和方法的运用&#xff0c;可直观的展示主题的研究发展历程、研究现状、研究…

嵌入式系统开发中的常见挑战和困难

当涉及嵌入式系统开发时&#xff0c;可能会遇到以下一些常见的挑战和困难&#xff1a; 复杂的硬件和软件集成&#xff1a;嵌入式系统通常涉及硬件和软件的紧密集成&#xff0c;需要同时理解和处理硬件和软件层面的问题。这种复杂性可能导致调试和故障排除变得更加困难。 有限…

php移除excel密码,excel保护密码忘记怎么撤销保护工作表

excel保护密码忘记撤销保护工作表的方法&#xff1a; 第一步&#xff0c;先找到一个带有有工作表保护密码的Excel工作表&#xff0c;然后把后缀名称改为.rar。 第二步&#xff0c;用压缩文件打开&#xff0c;然后找压缩的对应路径。 第三步&#xff0c;把从压缩文件里面找到的.…

Excel忘记保护密码

将工作簿文件名name.xlsx改为name.rar 打开rar文件&#xff0c;进入xl目录 1. 解除工作表保护 进入worksheets目录&#xff0c;右击待解除密码的sheet1.xml&#xff0c;选择编辑 ctrlF找到关键字sheetProtection&#xff0c;把包含关键字的<>段落删除&#xff0c;保存…

excel保护密码怎么解除

excel文件想要解除工作表保护密码&#xff0c;只需要在上方工具栏中找到【审阅】-【撤销工作表保护】输入之前设置的加密密码就可以了。 但是如果你没有保护密码&#xff0c;想要撤销的话就不能使用上面的方法了。需要使用解密软件来帮我们解决问题。【EXCEL解密大师】快速找回…

Excel保护密码破解 打开密码和只读密码等四个密码找回

亲测有用&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01; https://download.csdn.net/download/ystyaoshengting/11206062