สร้างแผนภูมิวงกลมใน PowerPoint ด้วย C# REST API

บทความนี้จะแนะนำวิธี สร้างแผนภูมิวงกลมใน PowerPoint ด้วย C# REST API คุณจะได้เรียนรู้วิธี วิธีสร้างแผนภูมิวงกลมใน PowerPoint ด้วย C# RESTful Service โดยใช้ Cloud SDK ที่ใช้ .NET ขั้นตอนทั้งหมดดำเนินการในโค้ดตัวอย่างพร้อมกับคำอธิบายประกอบ

ข้อกำหนดเบื้องต้น

ขั้นตอนในการสร้างแผนภูมิวงกลมใน PowerPoint ด้วย API ที่ใช้ C# .NET

  1. เริ่มต้นไคลเอ็นต์ API ด้วย ID และ KEY โดยใช้คลาส SlidesApi
  2. อ่านไฟล์การนำเสนอในเครื่องและอัปโหลดไปยังที่เก็บข้อมูลบนคลาวด์
  3. สร้างแผนภูมิวงกลมโดยกำหนดตำแหน่ง ขนาด และประเภทเพื่อกำหนดค่า
  4. เพิ่มป้ายกำกับลงในแผนภูมิและสร้างชุดจุดข้อมูลสำหรับแผนภูมิ
  5. เพิ่มซีรีส์ลงในแผนภูมิและเพิ่มแผนภูมินี้ลงในสไลด์เป้าหมายในงานนำเสนอที่โหลดโดยใช้เมธอด CreateShape()
  6. ดาวน์โหลดงานนำเสนอเป็นไฟล์ในเครื่อง

ขั้นตอนเหล่านี้อธิบาย คุณจะสร้างแผนภูมิวงกลมใน PowerPoint ด้วย C# RESTful Service ได้อย่างไร สร้างอินสแตนซ์ของออบเจ็กต์แผนภูมิ กำหนดค่าคุณสมบัติ เพิ่มหมวดหมู่ และสร้างชุดจุดข้อมูลเพื่อเพิ่มลงในแผนภูมิวงกลม สุดท้าย เพิ่มแผนภูมิวงกลมลงในสไลด์เป้าหมายในงานนำเสนอและบันทึกลงในดิสก์ภายในเครื่อง

รหัสเพื่อเพิ่มกราฟวงกลมใน PowerPoint ด้วย C # RESTful Service

using SlidesCloud.SDK; // Importing the SDK for managing presentations
using SlidesCloud.SDK.Model; // Importing models used for creating and manipulating presentation components
using System;
using System.IO;
namespace PresentationManager // Custom namespace for this program
{
class ShapeAdder
{
static void Main(string[] args) // Main entry point of the program
{
// Initialize the API client with API key and secret
SlidesApi presentationApi = new SlidesApi("Client ID", "Secret");
// Upload the presentation file to the server
// Reads the local presentation file and uploads it to the cloud for processing
var uploadResult = presentationApi.UploadFile("SampleDeck.pptx", new MemoryStream(File.ReadAllBytes("SampleDeck.pptx")));
// Configure chart properties
// Creating a new chart object and defining its position, size, and type
Chart customChart = new Chart
{
ChartType = Chart.ChartTypeEnum.Pie, // Specifies the type of chart (Pie Chart)
X = 150, // X-coordinate of the chart's position on the slide
Y = 120, // Y-coordinate of the chart's position on the slide
Width = 450, // Width of the chart
Height = 350, // Height of the chart
Title = new ChartTitle { Text = "Pie Chart" } // Setting the chart title
};
// Adding categories (labels) to the chart
customChart.Categories = new System.Collections.Generic.List<ChartCategory>
{
new ChartCategory { Value = "Category A" }, // First category
new ChartCategory { Value = "Category B" }, // Second category
new ChartCategory { Value = "Category C" } // Third category
};
// Define data series and data points
// Creating a series of data points for the chart
OneValueSeries chartSeries = new OneValueSeries
{
IsColorVaried = true, // Allows different colors for each data point
DataPoints = new System.Collections.Generic.List<OneValueChartDataPoint>
{
new OneValueChartDataPoint { Value = 35 }, // Data point for Category A
new OneValueChartDataPoint { Value = 45 }, // Data point for Category B
new OneValueChartDataPoint { Value = 20 } // Data point for Category C
}
};
// Adding the series to the chart
customChart.Series = new System.Collections.Generic.List<Series> { chartSeries };
// Add the chart to the first slide of the presentation
Chart insertedChart = (Chart)presentationApi.CreateShape("SampleDeck.pptx", 1, customChart);
// Display the number of categories in the chart
Console.WriteLine("Number of Categories in the Chart: " + insertedChart.Categories.Count);
// Download the updated presentation file from the server
Stream updatedPresentationStream = presentationApi.DownloadFile("SampleDeck.pptx");
// Save the downloaded presentation to a local file
// Writing the downloaded stream to a new file on disk
using (var fileStream = new FileStream("UpdatedDeck.pptx", FileMode.Create, FileAccess.Write))
{
updatedPresentationStream.CopyTo(fileStream);
}
// Notify the user that the process is complete
Console.WriteLine("Updated presentation saved as 'UpdatedDeck.pptx'.");
}
}
}

โค้ดด้านบนแสดง วิธีสร้างแผนภูมิวงกลมใน PPT ด้วย C# .NET-based API คุณอาจตรวจสอบให้แน่ใจว่าคุณเพิ่มชุดการรวบรวมข้อมูลได้มากเท่ากับจำนวนหมวดหมู่ที่เพิ่มในแผนภูมิ โปรดทราบว่าต้องโหลดงานนำเสนอในตอนเริ่มต้น มิฉะนั้นคุณอาจได้รับข้อยกเว้นขณะรันโค้ดโดยไม่ต้องอัปโหลดงานนำเสนอต้นฉบับ

บทความนี้ได้สอนให้เราเพิ่มแผนภูมิวงกลมในงานนำเสนอ หากต้องการเพิ่มแผนภูมิแท่ง โปรดดูบทความเกี่ยวกับ สร้างแผนภูมิแท่งใน PowerPoint ด้วย C# REST API

 ไทย