C# 在PPT幻燈片中建立圖表
圖表能夠很直觀的表現資料在某個時間段的變化趨勢,或者呈現資料的整體和區域性之間的相互關係,相較於大篇幅的文字資料,圖表更增加了我們分析資料時選擇的多樣性,是我們挖掘資料背後潛在價值的一種更為有效地方式。在做資料彙報時,常用到PPT幻燈片來輔助工作,下面的示例中將演示如何通過C#程式設計在PPT幻燈片中建立圖表。示例中主要介紹了三種圖表的建立方法,如下:
1. 建立柱形圖表
2. 建立餅狀圖表
3. 建立混合型圖表(柱形圖、折線圖)
PS:下載安裝後,注意新增引用Spire.Presentation.dll到程式,dll檔案可在安裝路徑下的Bin資料夾中獲取。
【示例 1 】建立柱形圖表
步驟 1 :新增using指令
using Spire.Presentation; using Spire.Presentation.Charts; using System; using System.Drawing;
步驟 2 :建立一個PowerPoint文件
Presentation presentation = new Presentation();
步驟 3 :在幻燈片指定位置繪入指定大小和型別的圖表
RectangleF rect = new RectangleF(40, 50, 680, 500); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.Column3DClustered, rect);
步驟 4 :新增圖表資料
//新增圖表名 chart.ChartTitle.TextProperties.Text = "2018年上半年銷量"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //定義一個sting[,]陣列 string[,] data = new string[,] { {"產品大類","1月","2月","3月","4月","5月","6月" }, {"DW10","1542","1057","1223","1302","1145","1336"}, {"ZQ13","4587","3658","2515","3154","2984","3890" }, {"YI73","558","458","369","576","334","482" }, {"TR11","2011","2485" ,"3010" ,"2785" ,"2225" ,"2476" } }; //將資料寫入圖表後臺資料表 for (int i = 0; i < data.GetLength(0); i++) { for (int j = 0; j < data.GetLength(1); j++) { //將數字型別的字串轉換為整數 int number; bool result = Int32.TryParse(data[i, j], out number); if (result) { chart.ChartData[i, j].Value = number; } else { chart.ChartData[i, j].Value = data[i, j]; } } } //設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "G1"]; //設定類別標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為各個系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; chart.Series[1].Values = chart.ChartData["C2", "C5"]; chart.Series[2].Values = chart.ChartData["D2", "D5"]; chart.Series[3].Values = chart.ChartData["E2", "E5"]; chart.Series[4].Values = chart.ChartData["F2", "F5"]; chart.Series[5].Values = chart.ChartData["G2", "G5"];
步驟 5 :應用圖表樣式
//應用內建圖示樣式 chart.ChartStyle = ChartStyle.Style12; //設定系列重疊 chart.OverLap = -50; //設定類別間距 chart.GapWidth = 200;
步驟 6 :儲存文件
presentation.SaveToFile("柱形圖.pptx", FileFormat.Pptx2010); System.Diagnostics.Process.Start("柱形圖.pptx");
除錯執行程式後,生成圖表,如下圖:
全部程式碼:
using Spire.Presentation; using Spire.Presentation.Charts; using System; using System.Drawing; namespace ColumnChart { class Program { static void Main(string[] args) { //建立一個PowerPoint文件 Presentation presentation = new Presentation(); //插入柱形圖 RectangleF rect = new RectangleF(40, 50, 680, 500); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.Column3DClustered, rect); //新增圖表名 chart.ChartTitle.TextProperties.Text = "2018年上半年銷量"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //定義一個sting[,]陣列 string[,] data = new string[,] { {"產品大類","1月","2月","3月","4月","5月","6月" }, {"DW10","1542","1057","1223","1302","1145","1336"}, {"ZQ13","4587","3658","2515","3154","2984","3890" }, {"YI73","558","458","369","576","334","482" }, {"TR11","2011","2485" ,"3010" ,"2785" ,"2225" ,"2476" } }; //將資料寫入圖表後臺資料表 for (int i = 0; i < data.GetLength(0); i++) { for (int j = 0; j < data.GetLength(1); j++) { //將數字型別的字串轉換為整數 int number; bool result = Int32.TryParse(data[i, j], out number); if (result) { chart.ChartData[i, j].Value = number; } else { chart.ChartData[i, j].Value = data[i, j]; } } } //設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "G1"]; //設定類別標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為各個系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; chart.Series[1].Values = chart.ChartData["C2", "C5"]; chart.Series[2].Values = chart.ChartData["D2", "D5"]; chart.Series[3].Values = chart.ChartData["E2", "E5"]; chart.Series[4].Values = chart.ChartData["F2", "F5"]; chart.Series[5].Values = chart.ChartData["G2", "G5"]; //應用內建圖示樣式 chart.ChartStyle = ChartStyle.Style12; //設定系列重疊 chart.OverLap = -50; //設定類別間距 chart.GapWidth = 200; //儲存並開啟文件 presentation.SaveToFile("柱形圖.pptx", FileFormat.Pptx2010); System.Diagnostics.Process.Start("柱形圖.pptx"); } } }View Code
【示例 2 】建立環形圖表
步驟 1 :新增using指令
using Spire.Presentation; using Spire.Presentation.Charts; using Spire.Presentation.Drawing; using System.Drawing;
步驟 2 :新建一個PPT檔案
Presentation presentation = new Presentation();
步驟 3 :插入圓環形圖表
RectangleF rect = new RectangleF(40, 100, 550, 320); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.Doughnut, rect, false);
步驟 4 :新增圖表資料內容
//設定圖表名 chart.ChartTitle.TextProperties.Text = "市場份額"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //定義資料 string[] countries = new string[] { "古巴", "墨西哥", "法國", "德國" }; int[] sales = new int[] { 1800, 3000, 5100, 6200 }; //將資料寫入圖表後臺資料表 chart.ChartData[0, 0].Text = "國家"; chart.ChartData[0, 1].Text = "銷售額"; for (int i = 0; i < countries.Length; ++i) { chart.ChartData[i + 1, 0].Value = countries[i]; chart.ChartData[i + 1, 1].Value = sales[i]; }
步驟 5 :應用圖表標籤
//設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "B1"]; //設定分類標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; //新增點到系列 for (int i = 0; i < chart.Series[0].Values.Count; i++) { ChartDataPoint cdp = new ChartDataPoint(chart.Series[0]); cdp.Index = i; chart.Series[0].DataPoints.Add(cdp); } //為系列裡的個點新增背景顏色 chart.Series[0].DataPoints[0].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[0].Fill.SolidColor.Color = Color.LightBlue; chart.Series[0].DataPoints[1].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[1].Fill.SolidColor.Color = Color.MediumPurple; chart.Series[0].DataPoints[2].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[2].Fill.SolidColor.Color = Color.DarkGray; chart.Series[0].DataPoints[3].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[3].Fill.SolidColor.Color = Color.DarkOrange; //設定標籤顯示數值 chart.Series[0].DataLabels.LabelValueVisible = true; //設定標籤顯示百分比 chart.Series[0].DataLabels.PercentValueVisible = true; //設定圓環內徑大小 chart.Series[0].DoughnutHoleSize = 60;
步驟 6 :儲存文件
presentation.SaveToFile("環形圖.pptx", FileFormat.Pptx2013); System.Diagnostics.Process.Start("環形圖.pptx");
圓環圖表建立效果:
全部程式碼:
using Spire.Presentation; using Spire.Presentation.Charts; using Spire.Presentation.Drawing; using System.Drawing; namespace DoughnutChart { class Program { static void Main(string[] args) { //建立一個PowerPoint檔案 Presentation presentation = new Presentation(); //插入圓環圖 RectangleF rect = new RectangleF(40, 100, 550, 320); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.Doughnut, rect, false); //設定圖表名 chart.ChartTitle.TextProperties.Text = "市場份額"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //定義資料 string[] countries = new string[] { "古巴", "墨西哥", "法國", "德國" }; int[] sales = new int[] { 1800, 3000, 5100, 6200 }; //將資料寫入圖表後臺資料表 chart.ChartData[0, 0].Text = "國家"; chart.ChartData[0, 1].Text = "銷售額"; for (int i = 0; i < countries.Length; ++i) { chart.ChartData[i + 1, 0].Value = countries[i]; chart.ChartData[i + 1, 1].Value = sales[i]; } //設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "B1"]; //設定分類標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; //新增點到系列 for (int i = 0; i < chart.Series[0].Values.Count; i++) { ChartDataPoint cdp = new ChartDataPoint(chart.Series[0]); cdp.Index = i; chart.Series[0].DataPoints.Add(cdp); } //為系列裡的個點新增背景顏色 chart.Series[0].DataPoints[0].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[0].Fill.SolidColor.Color = Color.LightBlue; chart.Series[0].DataPoints[1].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[1].Fill.SolidColor.Color = Color.MediumPurple; chart.Series[0].DataPoints[2].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[2].Fill.SolidColor.Color = Color.DarkGray; chart.Series[0].DataPoints[3].Fill.FillType = FillFormatType.Solid; chart.Series[0].DataPoints[3].Fill.SolidColor.Color = Color.DarkOrange; //設定標籤顯示數值 chart.Series[0].DataLabels.LabelValueVisible = true; //設定標籤顯示百分比 chart.Series[0].DataLabels.PercentValueVisible = true; //設定圓環內徑大小 chart.Series[0].DoughnutHoleSize = 60; //儲存文件 presentation.SaveToFile("環形圖.pptx", FileFormat.Pptx2013); System.Diagnostics.Process.Start("環形圖.pptx"); } } }View Code
【示例 3 】建立混合型圖表
步驟 1 :新增using指令
using Spire.Presentation; using Spire.Presentation.Charts; using Spire.Presentation.Drawing; using System; using System.Data; using System.Drawing;
步驟 2 :新建文件
Presentation presentation = new Presentation();
步驟 3 :建立圖表1:柱形圖表
//插入柱形圖 RectangleF rect = new RectangleF(40, 100, 650, 320); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.ColumnClustered, rec //新增表名 chart.ChartTitle.TextProperties.Text = "2017季度銷售情況"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //建立一個DataTable DataTable dataTable = new DataTable(); dataTable.Columns.Add(new DataColumn("季度", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("銷售額", Type.GetType("System.Int32"))); dataTable.Columns.Add(new DataColumn("同比增長率", Type.GetType("System.Decimal"))); dataTable.Rows.Add("1季度", 200, 0.6); dataTable.Rows.Add("2季度", 250, 0.8); dataTable.Rows.Add("3季度", 300, 0.6); dataTable.Rows.Add("4季度", 150, 0.2); //將DataTable資料匯入圖表後臺資料表 for (int c = 0; c < dataTable.Columns.Count; c++) { chart.ChartData[0, c].Text = dataTable.Columns[c].Caption; } for (int r = 0; r < dataTable.Rows.Count; r++) { object[] datas = dataTable.Rows[r].ItemArray; for (int c = 0; c < datas.Length; c++) { chart.ChartData[r + 1, c].Value = datas[c]; } } //設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "C1"]; //設定類別標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; chart.Series[1].Values = chart.ChartData["C2", "C5"];
步驟 4 :新增折線圖
//將系列2的圖表型別改為折線圖 chart.Series[1].Type = ChartType.LineMarkers; //將系列2顯示到第二根軸 chart.Series[1].UseSecondAxis = true; //顯示百分比資料 chart.SecondaryValueAxis.NumberFormat = "0%"; //不顯示第二根軸的網格線 chart.SecondaryValueAxis.MajorGridTextLines.FillType = FillFormatType.None; //設定系列重疊 chart.OverLap = -50; //設定類別間距 chart.GapWidth = 200;
步驟 5 :儲存檔案
presentation.SaveToFile("混合圖表.pptx", FileFormat.Pptx2010); System.Diagnostics.Process.Start("混合圖表.pptx");
混合型圖表生成效果:
全部程式碼:
using Spire.Presentation; using Spire.Presentation.Charts; using Spire.Presentation.Drawing; using System; using System.Data; using System.Drawing; namespace 混合圖表 { class Program { static void Main(string[] args) { //新建一個PowerPoint文件 Presentation presentation = new Presentation(); //插入柱形圖 RectangleF rect = new RectangleF(40, 100, 650, 320); IChart chart = presentation.Slides[0].Shapes.AppendChart(ChartType.ColumnClustered, rect); //新增表名 chart.ChartTitle.TextProperties.Text = "2017季度銷售情況"; chart.ChartTitle.TextProperties.IsCentered = true; chart.ChartTitle.Height = 30; chart.HasTitle = true; //建立一個DataTable DataTable dataTable = new DataTable(); dataTable.Columns.Add(new DataColumn("季度", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("銷售額", Type.GetType("System.Int32"))); dataTable.Columns.Add(new DataColumn("同比增長率", Type.GetType("System.Decimal"))); dataTable.Rows.Add("1季度", 200, 0.6); dataTable.Rows.Add("2季度", 250, 0.8); dataTable.Rows.Add("3季度", 300, 0.6); dataTable.Rows.Add("4季度", 150, 0.2); //將DataTable資料匯入圖表後臺資料表 for (int c = 0; c < dataTable.Columns.Count; c++) { chart.ChartData[0, c].Text = dataTable.Columns[c].Caption; } for (int r = 0; r < dataTable.Rows.Count; r++) { object[] datas = dataTable.Rows[r].ItemArray; for (int c = 0; c < datas.Length; c++) { chart.ChartData[r + 1, c].Value = datas[c]; } } //設定系列標籤 chart.Series.SeriesLabel = chart.ChartData["B1", "C1"]; //設定類別標籤 chart.Categories.CategoryLabels = chart.ChartData["A2", "A5"]; //為系列賦值 chart.Series[0].Values = chart.ChartData["B2", "B5"]; chart.Series[1].Values = chart.ChartData["C2", "C5"]; //將系列2的圖表型別改為折線圖 chart.Series[1].Type = ChartType.LineMarkers; //將系列2顯示到第二根軸 chart.Series[1].UseSecondAxis = true; //顯示百分比資料 chart.SecondaryValueAxis.NumberFormat = "0%"; //不顯示第二根軸的網格線 chart.SecondaryValueAxis.MajorGridTextLines.FillType = FillFormatType.None; //設定系列重疊 chart.OverLap = -50; //設定類別間距 chart.GapWidth = 200; //儲存開啟文件 presentation.SaveToFile(相關推薦
C# 在PPT幻燈片中建立圖表
圖表能夠很直觀的表現資料在某個時間段的變化趨勢,或者呈現資料的整體和區域性之間的相互關係,相較於大篇幅的文字資料,圖表更增加了我們分析資料時選擇的多樣性,是我們挖掘資料背後潛在價值的一種更為有效地方式。在做資料彙報時,常用到PPT幻燈片來輔助工作,下面的示例中將演示如何通過C#程式設計在PPT幻燈片中建立圖表
C# 在PPT幻燈片中繪製圖形
概述 本篇文章將介紹C#在PPT幻燈片中操作形狀(shape)的方法。這裡主要涉及常規形狀,如帶箭頭的線條,矩形、圓形、三角形、多邊形、不規則形狀等。下面的示例中,可以通過繪製形狀,並設定相應格式等。示例包含以下要點: 繪製形狀 用圖片填充形狀 在形狀中新增文字 設定形狀單色、漸變色填充
Java 新增 、讀取以及刪除PPT幻燈片中的視訊、音訊檔案
在PPT中,可以操作很多種元素,如形狀、圖形、文字、圖片、表格等,也可以插入視訊或者音訊檔案,來豐富幻燈片的內容呈現方式。下面將介紹在Java程式中如何來新增視訊、音訊檔案到PPT幻燈片,讀取和刪除幻燈片中的視訊、音訊檔案。 程式環境:匯入Spire.Presentation.jar(免費版) ;
C#操作office進行Excel圖表建立,儲存本地,word獲取
1,新建C#控制檯應用程式(Excel建立圖表) using System; using System.Collections.Generic; using System.Linq; using System.Text; //解決方案中 新增引用 Execl(COM元件)
使用上頁幻燈片中定義的類,以下代碼輸出結果是什麽
類成員 java 構造函數 技術分享 默認值 代碼 輸出 沒有 span 1)類的構造方法 ①“構造方法”,也稱為“構造函數”,當創建一個對象時,它的構造方法會被自動調用。構造方法與類名相同,無返回值。 ②如果類沒有定義構造函數,Java編譯器在編譯時會自動給它提供一個
C++ 用new 動態建立多維陣列
例: int **array=new int*[n]; &nbs
使用上頁幻燈片中定義的類,以下程式碼輸出結果是什麼
1)類的構造方法 ①“構造方法”,也稱為“建構函式”,當建立一個物件時,它的構造方法會被自動呼叫。構造方法與類名相同,無返回值。 ②如果類沒有定義建構函式,Java編譯器在編譯時會自動給它提供一個沒有引數的“預設構造方法”。如果類提供了一個自定義的構造方法,將導致系統不再提供預設構造方法。 ③同
c 通過純程式碼建立桌面快捷方式 建立程式選單項 將網頁新增到收藏夾
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!  
linux c 中檔案的建立 讀寫
標頭檔案:#include<stdlib.h 定義: FILE *fd 建立 : fd=fopen("pathname" ,"w"); pathename: 路徑 或者直接在當前目錄下 w:只寫 r: 只讀 b: 二進位制 可以組合使用。
C#中DataTable的建立與遍歷
C#中DataTable的建立與遍歷 1、建立DataTable物件 /// <summary> /// 建立DataTable物件 /// </summary> public static DataTable CreateDataTable() { //
資料結構--C語言--逆序建立單鏈表,遍歷單鏈表,在單鏈表第5個元素前插入一個值為999的元素,刪除單鏈表第5個元素
#include<stdio.h> #include<stdlib.h> #define OK 1 #define ERROR 0 #define LEN sizeof(struct LNode) struct LNode{ int data; struct LNode
c++動態分配空間建立三維陣列
#include<iostream> using namespace std; int main(){ int (*cp)[9][8] = new int [7][9][8];//建立一個動態的三維陣列 for (int i = 0;i<
新手上路,勿噴。C++連結串列的建立,遍歷,刪除,插入等等
//list.h #pragma once template<typename T>class slistNode { public: slistNode() { next = nullptr; cout << "呼叫了slistnode的建構函式
C 語言例項4——建立簡單的靜態連結串列
為了建立連結串列 使head指向a節點,a.next指向b節點,b.next指向c節點這就構成了連結串列關係。 #include<stdio.h> struct Student { int num; float score; struct St
C語言動態庫建立方法,以及和python混合程式設計
這篇小結是2016年暑假在新疆出差階段所寫,因為專案需要所以研究了一下。 如有錯誤,歡迎互相交流。 不同編譯器實現python呼叫C語言動態庫方法小結 Windows平臺下Visual Studio 2010編譯器建立動態庫,並呼叫 第一步:建立動態dll動態庫
【C語言】向建立的 d:\\demo.txt 檔案中追加一個字串。
#include<stdio.h> int main() { FILE *fp; char str[102] = { 0 }, strTemp[100]; if ((fp = fopen("D:\\demo.txt", "at+")) == NULL) {
C#的類的建立簡單繼承
從熟悉C#語法到開發桌面應用 學校有個專案作業,要求用C#開發桌面應用小程式,然而我對桌面應用開發完全是小白。雖然以前學過基本的C#語法,但是幾乎都忘掉了,我一直用的都是python,因此需要先把C#語法在四天左右的時間快速熟悉,然後開始桌面程式設計。 壹. C#的類的建立簡單繼承(封裝
C#驗證碼的建立和使用
先新增一個驗證碼類ValidateCode using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.IO;
C語言專案的建立詳解
最近為方便記錄我的IT學習生活和相關經驗,於是將有關自己對對相關知識的見解置於CSDN部落格上,以供各位學習交流。 今天我要分享的主題是有關C語言專案的建立和相關基礎知識,下面就以VS編譯器為例進行相關講解,若是有不當之處,還希望各位博友諒解並指出。 VS中
C++呼叫API初步建立Windows視窗程式
首先在進行介紹前,先介紹一下api,個人理解,api是在windows.h中提供的一些封裝好的函式。 建立一個視窗程式的一般步驟是先註冊一個視窗類名,然後再建立一個視窗,傳遞資訊進行處理(視窗的操作都是通過資訊傳遞來實現的) 下面介紹幾個要用到api函式 RegistetClass()&