Tạo biểu đồ thanh trong PowerPoint bằng API C# REST

Bài viết này hướng dẫn cách tạo biểu đồ thanh trong PowerPoint bằng C# REST API. Bạn sẽ tìm hiểu cách tạo biểu đồ thanh trong PowerPoint bằng C# RESTful Service bằng cách sử dụng SDK đám mây dựa trên .NET. Nó chứa thông tin đầy đủ về cách thêm biểu đồ và dữ liệu cài đặt.

Điều kiện tiên quyết

Các bước để thêm biểu đồ cột trong PowerPoint bằng API dựa trên C# .NET

  1. Khởi tạo SlidesApi bằng ID khách hàng và bí mật để thêm biểu đồ
  2. Tải tệp trình bày lên Đám mây
  3. Tạo một đối tượng cấu hình biểu đồ mới bằng lớp Biểu đồ và đặt loại biểu đồ
  4. Thêm tiêu đề biểu đồ và khởi tạo danh mục cho biểu đồ
  5. Khởi tạo chuỗi dữ liệu cho biểu đồ, tạo chuỗi dữ liệu và thêm chuỗi dữ liệu đầu tiên
  6. Khởi tạo thêm chuỗi dữ liệu cho biểu đồ nếu cần
  7. Thêm biểu đồ vào slide đầu tiên của bản trình bày bằng phương pháp CreateShape() và tải xuống nếu cần

Các bước này mô tả cách tạo biểu đồ thanh trong PowerPoint bằng API dựa trên C# .NET. Tạo đối tượng SlidesApi, tải lên bản trình bày, tạo đối tượng Biểu đồ, đặt loại biểu đồ, vị trí, kích thước, tiêu đề, danh mục và chuỗi dữ liệu mong muốn. Thêm chuỗi dữ liệu vào biểu đồ và thêm biểu đồ vào slide đầu tiên.

Mã để tạo biểu đồ thanh trong PowerPoint với giao diện C# REST

using Aspose.Slides.Cloud.Sdk;
using Aspose.Slides.Cloud.Sdk.Model;
using System;
using System.IO;
namespace AsposeTestCodes
{
class Program
{
static void Main(string[] args) // For adding a custom shape to a presentation
{
// Initialize the Slides API using client ID and secret key
SlidesApi slidesApi = new SlidesApi("Client ID", "Secret");
// Upload the presentation file to the cloud
var uploadResponse = slidesApi.UploadFile("MyPresentation.pptx", new MemoryStream(File.ReadAllBytes("MyPresentation.pptx")));
// Create a new chart configuration object
Chart chartConfig = new Chart();
// Define chart type as a stacked bar chart
chartConfig.ChartType = Chart.ChartTypeEnum.StackedBar;
// Set the position and dimensions of the chart on the slide
chartConfig.X = 150; // Horizontal position (pixels)
chartConfig.Y = 150; // Vertical position (pixels)
chartConfig.Width = 500; // Chart width (pixels)
chartConfig.Height = 350; // Chart height (pixels)
// Add a title to the chart
chartConfig.Title = new ChartTitle { Text = "Bar Chart Example" };
// Initialize categories (x-axis labels) for the chart
chartConfig.Categories = new System.Collections.Generic.List<ChartCategory>();
chartConfig.Categories.Add(new ChartCategory { Value = "Group A" }); // First category
chartConfig.Categories.Add(new ChartCategory { Value = "Group B" }); // Second category
chartConfig.Categories.Add(new ChartCategory { Value = "Group C" }); // Third category
chartConfig.Categories.Add(new ChartCategory { Value = "Group D" }); // Fourth category
// Initialize data series for the chart
chartConfig.Series = new System.Collections.Generic.List<Series>();
// Create the first data series
OneValueSeries firstSeries = new OneValueSeries();
firstSeries.DataPoints = new System.Collections.Generic.List<OneValueChartDataPoint>();
firstSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 15 }); // Value for Group A
firstSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 40 }); // Value for Group B
firstSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 25 }); // Value for Group C
firstSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 10 }); // Value for Group D
// Add the first data series to the chart
chartConfig.Series.Add(firstSeries);
// Create the second data series
OneValueSeries secondSeries = new OneValueSeries();
secondSeries.DataPoints = new System.Collections.Generic.List<OneValueChartDataPoint>();
secondSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 35 }); // Value for Group A
secondSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 20 }); // Value for Group B
secondSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 45 }); // Value for Group C
secondSeries.DataPoints.Add(new OneValueChartDataPoint { Value = 15 }); // Value for Group D
// Add the second data series to the chart
chartConfig.Series.Add(secondSeries);
// Add the chart to the first slide of the presentation
Chart createdChart = (Chart)slidesApi.CreateShape("MyPresentation.pptx", 1, chartConfig);
// Print the number of categories in the chart to the console
Console.WriteLine(createdChart.Categories.Count);
// Download the modified presentation from the cloud
Stream stream = slidesApi.DownloadFile("MyPresentation.pptx");
// Save the downloaded file to the local system
var fs = new FileStream("Downloaded.pptx", FileMode.Create, FileAccess.Write);
stream.CopyTo(fs); // Copy the stream data to the local file
}
}
}

Mã này trình bày quy trình cách tạo biểu đồ thanh trong PowerPoint bằng API mã thấp C#. Bạn có thể đặt loại biểu đồ khác nhau như ClusteredColumn, Column3D, ClusteredCone và Line, v.v. bằng cách sử dụng ChartTypeEnum và các tham số khác trong đối tượng Biểu đồ bao gồm ShowDataLabelsOverMaximum, BackWall, SideWall, Floor và Legend, v.v.

Bài viết này đã hướng dẫn chúng ta cách tạo biểu đồ thanh trong PowerPoint. Để chuyển đổi HTML sang PowerPoint, hãy tham khảo bài viết trên Chuyển đổi HTML sang PowerPoint bằng API NET REST.

 Tiếng Việt