[轉] C#操做EXCEL,生成圖表的全面應用

gailzhao 原文 關於C#操做EXCEL,生成圖表的全面應用ui

 

  近來我在開發一個運用C#生成EXCEL文檔的程序,其中要根據數據生成相應的圖表,該圖表對顏色和格式都有嚴格的要求,在百度和谷歌中搜索了全部的相關信息,只有部分介紹,具體格式的介紹沒有,通過我不斷的實踐和探索,終於完成了這項艱鉅的任務。this

  有兩種實現方式,一種是利用OWC11組件完成,一種運用Excel完成!spa

  運用OWC11的完成,適合生成一個圖形文件,以後不能不在文件中編輯;運用Excel則更適合利用EXCEL文件中的數據直 接在文件中加入圖表,方便之後編輯!兩種我都嘗試了,因爲我更適合於使用第二種,因此我開發的較完善。在這裏公佈源碼供你們參考使用! .net

  實例問題: 在EXCEL文檔中生成以下數據(部分,數據中是日期對應的兩種數據),在數據右側根據數據生成圖表。基金淨值指數圖表以下。orm

開放式基金 2008-1-2 5158.0456
4246.8861 2008-1-4 5214.2867
4325.5252 2008-1-8 5252.3962

 

 1、利用Microsoft.Office.Interop.Excel組件

 

using System.IO;
using System.Runtime.InteropServices;
using Excel = Microsoft.Office.Interop.Excel;


private void Btn_Click(object sender, EventArgs e)
{

        //建立一個EXCEL文檔
        CreateExcel("標題","文檔.XLS", "工做表名");
}

private void CreateExcel(string title,  string fileName, string sheetNames)
{
            //待生成的文件名稱
            string FileName = fileName;
            string FilePath = strCurrentPath + FileName;

            FileInfo fi = new FileInfo(FilePath);
            if (fi.Exists)     //判斷文件是否已經存在,若是存在就刪除!
            {
                fi.Delete();
            }
            if (sheetNames != null && sheetNames != "")
            {
                Excel.Application m_Excel = new Excel.Application();//建立一個Excel對象(同時啓動EXCEL.EXE進程)
                m_Excel.SheetsInNewWorkbook = 1;//工做表的個數
                Excel._Workbook m_Book = (Excel._Workbook)(m_Excel.Workbooks.Add(Missing.Value));//添加新工做簿
                Excel._Worksheet m_Sheet; 


                #region 處理

                DataSet ds= ScData.ListData("exec Vote_2008.dbo.P_VoteResult_Update " + int.Parse(fdate));
                if (ds.Tables.Count<= 0)
                {
                        MessageBox.Show("沒有最新數據!");
                        return;
                 }
                 DataTableToSheet(title,  ds.Tables[0], m_Sheet, m_Book, 0);
                #endregion

 

                #region 保存Excel,清除進程
                m_Book.SaveAs(FilePath, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value,   Excel.XlSaveAsAccessMode.xlNoChange, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value);
                //m_Excel.ActiveWorkbook._SaveAs(FilePath, Excel.XlFileFormat.xlExcel9795, null, null, false, false, Excel.XlSaveAsAccessMode.xlNoChange, null, null, null, null, null);
                m_Book.Close(false, Missing.Value, Missing.Value);
                m_Excel.Quit();
                System.Runtime.InteropServices.Marshal.ReleaseComObject(m_Book);
                System.Runtime.InteropServices.Marshal.ReleaseComObject(m_Excel);

                m_Book = null;
                m_Sheet = null;
                m_Excel = null;
                GC.Collect();
                //this.Close();//關閉窗體

                #endregion
            }
   }

        #region 將DataTable中的數據寫到Excel的指定Sheet中
        /// <summary>
        /// 將DataTable中的數據寫到Excel的指定Sheet中
        /// </summary>
        /// <param name="dt"></param>
        /// <param name="m_Sheet"></param>
        public void DataTableToSheet(string title, DataTable dt, Excel._Worksheet m_Sheet,
                                    Excel._Workbook m_Book,   int startrow)
        {

            //如下是填寫EXCEL中數據
            Excel.Range range = m_Sheet.get_Range(m_Sheet.Cells[1, 1], m_Sheet.Cells[1, 2]);
            range.MergeCells = true;  //合併單元格
            range.Font.Bold = true;   //加粗單元格內字符
            //寫入題目
            m_Sheet.Cells[startrow, startrow] = title;
            int rownum = dt.Rows.Count;//行數
            int columnnum = dt.Columns.Count;//列數
            int num = rownum + 2;   //獲得數據中的最大行數


            //寫入列標題
            for (int j = 0; j < columnnum; j++)
            {
                    int bt_startrow = startrow + 1;

                    //將字段名寫入文檔
                    m_Sheet.Cells[bt_startrow, 1 + j] = dt.Columns[j].ColumnName;

                     //單元格內背景色
                    m_Sheet.get_Range(m_Sheet.Cells[bt_startrow, 1 + j], m_Sheet.Cells[bt_startrow, 1 + j]).Interior.ColorIndex = 15;             }
           

            //逐行寫入數據
            for (int i = 0; i < rownum; i++)
            {
                for (int j = 0; j < columnnum; j++)
                {
                        m_Sheet.Cells[startrow + 2 + i, 1 + j] = dt.Rows[i][j].ToString();
                }
            }
            m_Sheet.Columns.AutoFit();

            

          //在當前工做表中根據數據生成圖表

           CreateChart(m_Book, m_Sheet, num);  
        }

       private void CreateChart(Excel._Workbook m_Book,Excel._Worksheet m_Sheet,int num)
        {
            Excel.Range oResizeRange;
            Excel.Series oSeries;

            m_Book.Charts.Add(Missing.Value, Missing.Value, 1, Missing.Value);
            m_Book.ActiveChart.ChartType = Excel.XlChartType.xlLine;//設置圖形

            //設置數據取值範圍
            m_Book.ActiveChart.SetSourceData(m_Sheet.get_Range("A2", "C" + num.ToString()), Excel.XlRowCol.xlColumns);
            //m_Book.ActiveChart.Location(Excel.XlChartLocation.xlLocationAutomatic, title);
            //如下是給圖表放在指定位置
            m_Book.ActiveChart.Location(Excel.XlChartLocation.xlLocationAsObject, m_Sheet.Name);
            oResizeRange = (Excel.Range)m_Sheet.Rows.get_Item(10, Missing.Value);
            m_Sheet.Shapes.Item("Chart 1").Top = (float)(double)oResizeRange.Top;  //調圖表的位置上邊距
            oResizeRange = (Excel.Range)m_Sheet.Columns.get_Item(6, Missing.Value);  //調圖表的位置左邊距
           // m_Sheet.Shapes.Item("Chart 1").Left = (float)(double)oResizeRange.Left;
            m_Sheet.Shapes.Item("Chart 1").Width = 400;   //調圖表的寬度
            m_Sheet.Shapes.Item("Chart 1").Height = 250;  //調圖表的高度

            m_Book.ActiveChart.PlotArea.Interior.ColorIndex = 19;  //設置繪圖區的背景色
            m_Book.ActiveChart.PlotArea.Border.LineStyle = Excel.XlLineStyle.xlLineStyleNone;//設置繪圖區邊框線條
            m_Book.ActiveChart.PlotArea.Width = 400;   //設置繪圖區寬度
            //m_Book.ActiveChart.ChartArea.Interior.ColorIndex = 10; //設置整個圖表的背影顏色
            //m_Book.ActiveChart.ChartArea.Border.ColorIndex = 8;// 設置整個圖表的邊框顏色
            m_Book.ActiveChart.ChartArea.Border.LineStyle = Excel.XlLineStyle.xlLineStyleNone;//設置邊框線條
            m_Book.ActiveChart.HasDataTable = false;


            //設置Legend圖例的位置和格式
            m_Book.ActiveChart.Legend.Top = 20.00; //具體設置圖例的上邊距
            m_Book.ActiveChart.Legend.Left = 60.00;//具體設置圖例的左邊距
            m_Book.ActiveChart.Legend.Interior.ColorIndex = Excel.XlColorIndex.xlColorIndexNone;
            m_Book.ActiveChart.Legend.Width = 150;
            m_Book.ActiveChart.Legend.Font.Size = 9.5;
            //m_Book.ActiveChart.Legend.Font.Bold = true;
            m_Book.ActiveChart.Legend.Font.Name = "宋體";
            //m_Book.ActiveChart.Legend.Position = Excel.XlLegendPosition.xlLegendPositionTop;//設置圖例的位置
            m_Book.ActiveChart.Legend.Border.LineStyle = Excel.XlLineStyle.xlLineStyleNone;//設置圖例邊框線條

 

            //設置X軸的顯示
            Excel.Axis xAxis = (Excel.Axis)m_Book.ActiveChart.Axes(Excel.XlAxisType.xlValue, Excel.XlAxisGroup.xlPrimary);
            xAxis.MajorGridlines.Border.LineStyle = Excel.XlLineStyle.xlDot;
            xAxis.MajorGridlines.Border.ColorIndex = 1;//gridLine橫向線條的顏色
            xAxis.HasTitle = false;
            xAxis.MinimumScale = 1500;
            xAxis.MaximumScale = 6000;
            xAxis.TickLabels.Font.Name = "宋體";
            xAxis.TickLabels.Font.Size = 9;

 

            //設置Y軸的顯示
            Excel.Axis yAxis = (Excel.Axis)m_Book.ActiveChart.Axes(Excel.XlAxisType.xlCategory, Excel.XlAxisGroup.xlPrimary);
            yAxis.TickLabelSpacing = 30;
            yAxis.TickLabels.NumberFormat = "M月D日";
            yAxis.TickLabels.Orientation = Excel.XlTickLabelOrientation.xlTickLabelOrientationHorizontal;//Y軸顯示的方向,是水平仍是垂直等
            yAxis.TickLabels.Font.Size = 8;
            yAxis.TickLabels.Font.Name = "宋體";

            //m_Book.ActiveChart.Floor.Interior.ColorIndex = 8; 
            /***如下是設置標題*****
            m_Book.ActiveChart.HasTitle=true;
            m_Book.ActiveChart.ChartTitle.Text = "淨值指數";
            m_Book.ActiveChart.ChartTitle.Shadow = true;
            m_Book.ActiveChart.ChartTitle.Border.LineStyle = Excel.XlLineStyle.xlContinuous;
            */

            oSeries = (Excel.Series)m_Book.ActiveChart.SeriesCollection(1);
            oSeries.Border.ColorIndex = 45;
            oSeries.Border.Weight = Excel.XlBorderWeight.xlThick;
            oSeries = (Excel.Series)m_Book.ActiveChart.SeriesCollection(2);
            oSeries.Border.ColorIndex = 9;
            oSeries.Border.Weight = Excel.XlBorderWeight.xlThick;

        }

 

 

2、利用Microsoft.Office.Interop.OWC11

        using OWC = Microsoft.Office.Interop.Owc11;

 

        public void DataTableToSheet(string title, DataTable dt, Excel._Worksheet m_Sheet, Excel._Workbook m_Book,   int startrow)
        {

            。。。。。。(同上篇)。。。。。。

                //使用OWC11組件畫圖
                showChart(OWC.ChartChartTypeEnum.chChartTypeLine);  //生成圖表文件

                //將圖表文件插入到EXCEL文檔中 
                m_Sheet.Shapes.AddPicture("E://chart.gif", MsoTriState.msoFalse, MsoTriState.msoTrue, 250, 100, 350, 250 );

        }

    private void showChart(OWC.ChartChartTypeEnum Type)
        {
            OWC.ChartChartTypeEnum _Type;

            OWC.ChartSpace axChartSpace1 = new OWC.ChartSpaceClass();
            try
            {

                axChartSpace1.Clear();
                OWC.ChChart objChart = axChartSpace1.Charts.Add(0);
                OWC.ChAxis axis = objChart.Axes[0];   //X軸
                OWC.ChAxis axis1 = objChart.Axes[1];  //Y軸

                objChart.Type = Type;
                objChart.HasLegend = true;
                objChart.Legend.Position = OWC.ChartLegendPositionEnum.chLegendPositionTop;
                //objChart.HasTitle = true;
                //objChart.Title.Caption = "淨值指數圖";
                //objChart.Axes[0].HasTitle = true ;
                //objChart.Axes[0].Title.Caption = "日期";
                //objChart.Axes[1].HasTitle = true;
                //objChart.Axes[1].Title.Caption = "數值";

                objChart.SeriesCollection.Add(0);
                objChart.SeriesCollection[0].SetData(OWC.ChartDimensionsEnum.chDimSeriesNames,
                 +(int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, "開放式基金");

                DataSet ds = ScData.ListData("exec zb_LiCaiZhouBao " + int.Parse(txtStartDate.Text.Replace("-","") ) + ",1");
                string X_Value1 = "";
                string X_Value2 = "";
                string Y_Value = "";
                if (ds.Tables.Count > 0)
                {
                    foreach (DataRow dr in ds.Tables[0].Rows)
                    {
                       // Console.WriteLine(dr["日期"].ToString());
                        Y_Value = Y_Value + dr["日期"].ToString() + '/t';
                        X_Value1 = X_Value1 + dr["開放式基金"].ToString() + '/t';
                        X_Value2 = X_Value2 + dr["偏股型基金"].ToString() + '/t';
                    }

                }

                objChart.SeriesCollection[0].SetData(OWC.ChartDimensionsEnum.chDimCategories,
                 +(int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, Y_Value);
                              objChart.SeriesCollection[0].SetData(OWC.ChartDimensionsEnum.chDimValues,
                 (int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, X_Value1);

                objChart.SeriesCollection.Add(1);
                objChart.SeriesCollection[1].SetData(OWC.ChartDimensionsEnum.chDimSeriesNames,
                 +(int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, "偏股型基金");

                objChart.SeriesCollection[1].SetData(OWC.ChartDimensionsEnum.chDimCategories,
                 +(int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, Y_Value);
                objChart.SeriesCollection[1].SetData(OWC.ChartDimensionsEnum.chDimValues,
                 (int)OWC.ChartSpecialDataSourcesEnum.chDataLiteral, X_Value2);

 

                objChart.SeriesCollection[0].Line.Color = "orange";
                //objChart.SeriesCollection[0].Line.Weight = OWC.ChLine.LineWeightEnum.owcLineWeightThick;   //線條加粗
                objChart.SeriesCollection[1].Line.Color = "maroon";
                //objChart.SeriesCollection[1].Line.Weight = OWC.LineWeightEnum.owcLineWeightThick; 

                axis.TickMarkSpacing = 30;
                axis.HasTickLabels = true;
                axis.TickLabelSpacing =30;

                axis1.HasMajorGridlines = true;
                axis1.MajorGridlines.Line.DashStyle = OWC.ChartLineDashStyleEnum.chLineDashDotDot;//.chLineDashDot;
                //axis1.MajorGridlines.Line.Color = "orange";

                objChart.PlotArea.Interior.Color = "LightYellow";    //圖表區的背景色

             

                // objChart.Interior.Color = "green";
              
               //objChart.Interior.BackColor = "yellow";
                //axis.TickMarkSpacing = 50;
            }
            catch (Exception ex)
            {
                //timer1.Enabled = false;
                MessageBox.Show(ex.Message);
            }

            finally
            {
                _Type = Type;
                //輸出成GIF文件.  
                string strAbsolutePath = "E://chart.gif"; //生成圖形文件   
                axChartSpace1.ExportPicture(strAbsolutePath, "GIF", 600, 350);

            }
        }
相關文章
相關標籤/搜索