Crea un grafico a barre in PowerPoint con l'API REST C#

Questo articolo spiega come creare un grafico a barre in PowerPoint con l’API REST C#. Imparerai come creare un grafico a barre in PowerPoint con il servizio RESTful C# utilizzando un Cloud SDK basato su .NET. Contiene informazioni complete sull’aggiunta di un grafico e sull’impostazione dei dati.

Prerequisito

Passaggi per aggiungere un istogramma in PowerPoint con API basata su C# .NET

  1. Inizializza SlidesApi con un ID client e un segreto per aggiungere un grafico
  2. Carica il file di presentazione sul Cloud
  3. Crea un nuovo oggetto di configurazione del grafico utilizzando la classe Chart e imposta il tipo di grafico
  4. Aggiungi il titolo del grafico e inizializza le categorie per il grafico
  5. Inizializza la serie di dati per il grafico, crea la serie di dati e aggiungi la prima serie di dati
  6. Se necessario, inizializza più serie di dati per il grafico
  7. Aggiungi il grafico alla prima diapositiva della presentazione utilizzando il metodo CreateShape() e scaricalo se necessario

Questi passaggi descrivono come creare un grafico a barre in PowerPoint con l’API basata su C# .NET. Crea l’oggetto SlidesApi, carica la presentazione, crea un oggetto Grafico, imposta il tipo di grafico, la posizione, le dimensioni, il titolo, le categorie e le serie di dati desiderate. Aggiungi le serie di dati al grafico e aggiungi il grafico alla prima diapositiva.

Codice per creare grafici a barre in PowerPoint con interfaccia 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
}
}
}

Questo codice dimostra il processo di come creare un grafico a barre in PowerPoint con l’API C# Low Code. È possibile impostare diversi tipi di grafico come ClusteredColumn, Column3D, ClusteredCone e Line ecc., utilizzando ChartTypeEnum e altri parametri nell’oggetto Chart inclusi ShowDataLabelsOverMaximum, BackWall, SideWall, Floor e Legend ecc.

Questo articolo ci ha insegnato la creazione di un grafico a barre in PowerPoint. Per convertire HTML in PowerPoint, fai riferimento all’articolo su Converti HTML in PowerPoint con l’API NET REST.

 Italiano