Cree un gráfico de barras en PowerPoint con la API REST de C#

Este artículo guía sobre cómo crear un gráfico de barras en PowerPoint con C# REST API. Aprenderá cómo crear un gráfico de barras en PowerPoint con C# RESTful Service usando un SDK de nube basado en .NET. Contiene información completa sobre cómo agregar un gráfico y configurar datos.

Requisito previo

Pasos para agregar un gráfico de columnas en PowerPoint con API basada en C# .NET

  1. Inicialice SlidesApi con un ID de cliente y un secreto para agregar un gráfico
  2. Sube el archivo de presentación a la Nube
  3. Cree un nuevo objeto de configuración de gráfico usando la clase Gráfico y establezca el tipo de gráfico
  4. Agregar título del gráfico e inicializar categorías para el gráfico
  5. Inicialice la serie de datos para el gráfico, cree la serie de datos y agregue la primera serie de datos
  6. Inicialice más series de datos para el gráfico si es necesario
  7. Agregue el gráfico a la primera diapositiva de la presentación usando el método CreateShape() y descárguelo si es necesario.

Estos pasos describen cómo crear un gráfico de barras en PowerPoint con la API basada en C# .NET. Cree el objeto SlidesApi, cargue la presentación, cree un objeto Gráfico, establezca el tipo de gráfico, la posición, las dimensiones, el título, las categorías y la serie de datos deseada. Agregue la serie de datos al gráfico y agregue el gráfico a la primera diapositiva.

Código para crear un gráfico de barras en PowerPoint con la interfaz REST de C#

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
}
}
}

Este código demuestra el proceso de cómo hacer un gráfico de barras en PowerPoint con C# Low Code API. Puede configurar diferentes tipos de gráfico, como ClusteredColumn, Column3D, ClusteredCone y Line, etc., utilizando ChartTypeEnum y otros parámetros en el objeto Chart, incluidos ShowDataLabelsOverMaximum, BackWall, SideWall, Floor y Legend, etc.

Este artículo nos ha enseñado la creación de un gráfico de barras en PowerPoint. Para convertir HTML a PowerPoint, consulte el artículo sobre Convierta HTML a PowerPoint con NET REST API.

 Español