圖表能夠很直觀的表現(xiàn)數(shù)據(jù)在某個時間段的變化趨勢,或者呈現(xiàn)數(shù)據(jù)的整體和局部之間的相互關系,相較于大篇幅的文本數(shù)據(jù),圖表更增加了我們分析數(shù)據(jù)時選擇的多樣性,是我們挖掘數(shù)據(jù)背后潛在價值的一種更為有效地方式。在做數(shù)據(jù)匯報時,常用到PPT幻燈片來輔助工作,下面的示例中將演示如何通過C#編程在PPT幻燈片中創(chuàng)建圖表。示例中主要介紹了三種圖表的創(chuàng)建方法,如下:
公司主營業(yè)務:網站制作、成都網站設計、移動網站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)公司是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)公司推出鎮(zhèn)寧免費做網站回饋大家。使用工具:Spire.Presentation for .NET
PS:下載安裝后,注意添加引用Spire.Presentation.dll到程序,dll文件可在安裝路徑下的Bin文件夾中獲取。
using Spire.Presentation;
using Spire.Presentation.Charts;
using System;
using System.Drawing;
namespace ColumnChart
{
class Program
{
static void Main(string[] args)
{
//創(chuàng)建一個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[,]數(shù)組
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" }
};
//將數(shù)據(jù)寫入圖表后臺數(shù)據(jù)表
for (int i = 0; i < data.GetLength(0); i++)
{
for (int j = 0; j < data.GetLength(1); j++)
{
//將數(shù)字類型的字符串轉換為整數(shù)
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");
}
}
}
調試運行程序后,生成圖表,如下圖:
using Spire.Presentation;
using Spire.Presentation.Charts;
using Spire.Presentation.Drawing;
using System.Drawing;
namespace DoughnutChart
{
class Program
{
static void Main(string[] args)
{
//創(chuàng)建一個PowerPoint文件
Presentation presentation = new Presentation();
//插入圓環(huán)圖
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;
//定義數(shù)據(jù)
string[] countries = new string[] { "古巴", "墨西哥", "法國", "德國" };
int[] sales = new int[] { 1800, 3000, 5100, 6200 };
//將數(shù)據(jù)寫入圖表后臺數(shù)據(jù)表
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;
//設置標簽顯示數(shù)值
chart.Series[0].DataLabels.LabelValueVisible = true;
//設置標簽顯示百分比
chart.Series[0].DataLabels.PercentValueVisible = true;
//設置圓環(huán)內徑大小
chart.Series[0].DoughnutHoleSize = 60;
//保存文檔
presentation.SaveToFile("環(huán)形圖.pptx", FileFormat.Pptx2013);
System.Diagnostics.Process.Start("環(huán)形圖.pptx");
}
}
}
環(huán)形圖創(chuàng)建效果:
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;
//創(chuàng)建一個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數(shù)據(jù)導入圖表后臺數(shù)據(jù)表
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;
//顯示百分比數(shù)據(jù)
chart.SecondaryValueAxis.NumberFormat = "0%";
//不顯示第二根軸的網格線
chart.SecondaryValueAxis.MajorGridTextLines.FillType = FillFormatType.None;
//設置系列重疊
chart.OverLap = -50;
//設置類別間距
chart.GapWidth = 200;
//保存打開文檔
presentation.SaveToFile("混合圖表.pptx", FileFormat.Pptx2010);
System.Diagnostics.Process.Start("混合圖表.pptx");
}
}
}
圖表創(chuàng)建結果:
注:Spire.Presentation 支持創(chuàng)建多大73種不同的圖表樣式,如下圖
以上是本次關于“C# 創(chuàng)建PPT圖表”的全部內容。
如需轉載,請注明出處。
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網絡助力業(yè)務部署。公司持有工信部辦法的idc、isp許可證, 機房獨有T級流量清洗系統(tǒng)配攻擊溯源,準確進行流量調度,確保服務器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務器買多久送多久。
網站名稱:C#創(chuàng)建PPT圖表-創(chuàng)新互聯(lián)
文章源于:http://muchs.cn/article12/diepgc.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、App設計、做網站、網站排名、定制開發(fā)、營銷型網站建設
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)