Créer un graphique à barres dans PowerPoint avec l'API REST C#

Cet article explique comment créer un graphique à barres dans PowerPoint avec l’API REST C#. Vous apprendrez comment créer un graphique à barres dans PowerPoint avec le service C# RESTful à l’aide d’un SDK Cloud basé sur .NET. Il contient des informations complètes sur l’ajout d’un graphique et la configuration des données.

Condition préalable

Étapes pour ajouter un histogramme dans PowerPoint avec l’API basée sur C# .NET

  1. Initialisez SlidesApi avec un ID client et un secret pour ajouter un graphique
  2. Téléchargez le fichier de présentation sur le Cloud
  3. Créez un nouvel objet de configuration de graphique à l’aide de la classe Chart et définissez le type de graphique
  4. Ajouter un titre au graphique et initialiser les catégories du graphique
  5. Initialisez la série de données pour le graphique, créez la série de données et ajoutez la première série de données
  6. Initialisez plus de séries de données pour le graphique si nécessaire
  7. Ajoutez le graphique à la première diapositive de la présentation en utilisant la méthode CreateShape() et téléchargez-le si nécessaire

Ces étapes décrivent comment créer un graphique à barres dans PowerPoint avec l’API basée sur C# .NET. Créez l’objet SlidesApi, téléchargez la présentation, créez un objet Chart, définissez le type de graphique, la position, les dimensions, le titre, les catégories et les séries de données souhaitées. Ajoutez la série de données au graphique et ajoutez le graphique à la première diapositive.

Code pour créer un graphique à barres dans PowerPoint avec l’interface 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
}
}
}

Ce code montre le processus de comment créer un graphique à barres dans PowerPoint avec l’API C# Low Code. Vous pouvez définir différents types de graphiques tels que ClusteredColumn, Column3D, ClusteredCone et Line, etc., en utilisant ChartTypeEnum et d’autres paramètres dans l’objet Chart, notamment ShowDataLabelsOverMaximum, BackWall, SideWall, Floor et Legend, etc.

Cet article nous a appris la création d’un graphique à barres dans PowerPoint. Pour convertir du HTML en PowerPoint, reportez-vous à l’article sur Convertir du HTML en PowerPoint avec l’API NET REST.

 Français