Buat Bagan Batang di PowerPoint dengan C# REST API

Artikel ini memandu tentang cara membuat diagram batang di PowerPoint dengan C# REST API. Anda akan mempelajari cara membuat grafik batang di PowerPoint dengan C# RESTful Service menggunakan Cloud SDK berbasis .NET. Ini berisi informasi lengkap tentang menambahkan grafik dan mengatur data.

Prasyarat

Langkah-langkah Menambahkan Bagan Kolom di PowerPoint dengan API berbasis C# .NET

  1. Inisialisasi SlidesApi dengan ID klien dan rahasia untuk menambahkan diagram
  2. Unggah file presentasi ke Cloud
  3. Buat objek konfigurasi bagan baru menggunakan kelas Chart dan atur jenis bagan
  4. Tambahkan judul bagan dan inisialisasi kategori untuk bagan
  5. Inisialisasi seri data untuk bagan, buat seri data, dan tambahkan seri data pertama
  6. Inisialisasi lebih banyak seri data untuk bagan jika diperlukan
  7. Tambahkan bagan ke slide pertama presentasi menggunakan metode CreateShape() dan unduh jika diperlukan

Langkah-langkah ini menjelaskan cara membuat diagram batang di PowerPoint dengan API berbasis C# .NET. Buat objek SlidesApi, upload presentasi, buat objek Chart, atur tipe chart, posisi, dimensi, judul, kategori dan seri data yang diinginkan. Tambahkan seri data ke bagan dan tambahkan bagan ke slide pertama.

Kode untuk Membuat Grafik Batang di PowerPoint dengan Antarmuka 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
}
}
}

Kode ini mendemonstrasikan proses cara membuat grafik batang di PowerPoint dengan C# Low Code API. Anda dapat mengatur tipe bagan yang berbeda seperti ClusteredColumn, Column3D, ClusteredCone, dan Line dll, menggunakan ChartTypeEnum dan parameter lain di objek Chart termasuk ShowDataLabelsOverMaximum, BackWall, SideWall, Floor, dan Legend dll.

Artikel ini telah mengajarkan kita pembuatan diagram batang di PowerPoint. Untuk mengkonversi HTML ke PowerPoint, lihat artikel di Konversi HTML ke PowerPoint dengan NET REST API.

 Indonesian