
Charts เป็นหนึ่งในส่วนสำคัญสำหรับการแสดงข้อมูลระหว่างการนำเสนอ เมื่อข้อเท็จจริงและตัวเลขมีกราฟ แผนภูมิ หรือ ตารางที่เหมาะสมและสอดคล้องใน PPT ข้อมูลที่นำเสนอจะมีความแน่นหนาและส่งผลกระทบมากขึ้น นอกเหนือจากการมีความน่าสนใจทางสายตา กราฟ แผนภูมิ หรือ ตารางเหล่านี้ยังส่งข้อมูลธุรกิจที่เกี่ยวข้องไปยังกลุ่มเป้าหมายของคุณในลักษณะที่เป็นระเบียบ ในบทความนี้เราจะพูดคุยเกี่ยวกับขั้นตอนในการสร้างหรือปรับเปลี่ยนแผนภูมิใน PowerPoint โดยใช้ REST API
ข้อมูล: Aspose มีเครื่องมือแปลง PowerPoint เป็น PDF ฟรี ที่ช่วยให้คุณแปลงงานนำเสนอเป็น PDF ได้。
ประโยชน์ของแผนภูมิใน PPT
เราสามารถรับประโยชน์มากมายจากการนำเสนอข้อมูลในรูปแบบกราฟต่าง ๆ แผนภูมิ หรือ ตารางใน PPT:
- กราฟ, แผนภูมิ, แผนภาพเชิงพรรณนา, หรือ ตาราง นำเสนอข้อมูลในรูปแบบที่กระชับ, สม่ำเสมอ, และมีขนาดกะทัดรัด กลุ่มเป้าหมายสามารถเข้าใจความหมายของข้อมูลได้อย่างรวดเร็ว
- พวกเขาน่าสนใจมากกว่าเนื้อหาข้อความธรรมดา และ PPT ของคุณจะกลายเป็นที่น่าสนใจมากขึ้นโดยอัตโนมัติเมื่อมีการรวมเข้าด้วยกันอย่างถูกต้องของพวกเขา
- ผู้ชมมักต้องการสรุปผลบางอย่างจากสไลด์ และมันช่วยให้เข้าใจข้อสรุปหลักของการนำเสนอ
- การประเมินข้อเท็จจริงจะทำได้ง่ายขึ้นเมื่อโหมดการมองเห็นช่วยให้สามารถเปรียบเทียบข้อมูลและตัวเลขที่แตกต่างกันได้
- สามารถกล่าวได้มากขึ้น ข้อมูลมากขึ้นสามารถถูกจัดเก็บและจัดเรียงอย่างกระชับ ซึ่งเป็นความสวยงามของกราฟและแผนภูมิใน PPT.
- พวกเขาช่วยลูกค้าที่มีแนวโน้มของคุณทำการสรุปที่สำคัญเกี่ยวกับด้านที่ละเอียดของธุรกิจของคุณในพารามิเตอร์ที่เข้าใจง่ายต่างๆ
API การประมวลผล PowerPoint
Aspose.Slides Cloud เป็น API ที่ใช้ REST ซึ่งให้ความสามารถในการสร้างและจัดการไฟล์นำเสนอ PowerPoint และ OpenOffice ในรุ่นล่าสุด แหล่งข้อมูลใหม่คือทรัพยากรย่อยของรูปทรง มันทำงานเฉพาะกับรูปทรงกราฟและอนุญาตให้เราสามารถเพิ่ม แก้ไข และลบชุดกราฟ
เพิ่มชุดข้อมูลลงในแผนภูมิ
POST https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series?folder=myFolder
Request Body
{ "dataPointType": "OneValue", "dataPoints": [{ "value": 5.5</code> <code>}, { "value": 76</code> <code>}, { "value": 27</code> <code>}] }
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
OneValueSeries dto = new OneValueSeries();
dto.DataPoints = new List<OneValueChartDataPoint>();
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 5.5 });
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 76 });
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 27 });
PostChartSeriesRequest request = new PostChartSeriesRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
Series = dto
};
Chart chart = api.PostChartSeries(request);
Console.WriteLine(chart.Series.Count);
อัปเดตชุดข้อมูลกราฟ
PUT https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2?folder=myFolder
Request Body
{ "dataPointType": "OneValue", "dataPoints": [{ "value": 5.5</code> <code>}, { "value": 76</code> <code>}, { "value": 27</code> <code>}] }
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
OneValueSeries dto = new OneValueSeries();
dto.DataPoints = new List<OneValueChartDataPoint>();
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 5.5 });
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 76 });
dto.DataPoints.Add(new OneValueChartDataPoint { Value = 27 });
PutChartSeriesRequest request = new PutChartSeriesRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
SeriesIndex = 2,
Series = dto
};
Chart chart = api.PutChartSeries(request);
Console.WriteLine(((OneValueSeries)chart.Series[1]).DataPoints.Count);
ลบชุดข้อมูลแผนภูมิ
DELETE https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2?folder=myFolder
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
DeleteChartSeriesRequest request = new DeleteChartSeriesRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SlideIndex = 1,
ShapeIndex = 1,
SeriesIndex = 2
};
Chart chart = api.DeleteChartSeries(request);
Console.WriteLine(chart.Series.Count);
บทความที่เกี่ยวข้อง
เราขอแนะนำให้คุณเข้าเยี่ยมชมลิงก์ต่อไปนี้เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับ: