Erstellen Sie ein Balkendiagramm in PowerPoint mit der C#-REST-API

In diesem Artikel erfahren Sie, wie Sie mit der C#-REST-API ein Balkendiagramm in PowerPoint erstellen. Sie erfahren, wie Sie mit einem .NET-basierten Cloud SDK ein Balkendiagramm in PowerPoint mit C# RESTful Service erstellen. Es enthält umfassende Informationen zum Hinzufügen eines Diagramms und zum Festlegen von Daten.

Voraussetzung

Schritte zum Hinzufügen eines Säulendiagramms in PowerPoint mit C# .NET-basierter API

  1. Initialisieren Sie SlidesApi mit einer Client-ID und einem Geheimnis zum Hinzufügen eines Diagramms
  2. Laden Sie die Präsentationsdatei in die Cloud hoch
  3. Erstellen Sie mithilfe der Chart-Klasse ein neues Diagrammkonfigurationsobjekt und legen Sie den Diagrammtyp fest
  4. Fügen Sie einen Diagrammtitel hinzu und initialisieren Sie Kategorien für das Diagramm
  5. Initialisieren Sie die Datenreihe für das Diagramm, erstellen Sie die Datenreihe und fügen Sie die erste Datenreihe hinzu
  6. Initialisieren Sie bei Bedarf weitere Datenreihen für das Diagramm
  7. Fügen Sie das Diagramm mit der Methode CreateShape() zur ersten Folie der Präsentation hinzu und laden Sie es bei Bedarf herunter

In diesen Schritten wird beschrieben, wie man ein Balkendiagramm in PowerPoint mit der C# .NET-basierten API erstellt. Erstellen Sie das SlidesApi-Objekt, laden Sie die Präsentation hoch, erstellen Sie ein Diagrammobjekt, legen Sie Diagrammtyp, Position, Abmessungen, Titel, Kategorien und gewünschte Datenreihen fest. Fügen Sie die Datenreihe zum Diagramm hinzu und fügen Sie das Diagramm zur ersten Folie hinzu.

Code zum Erstellen eines Balkendiagramms in PowerPoint mit der C#-REST-Schnittstelle

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

Dieser Code demonstriert den Prozess, wie man ein Balkendiagramm in PowerPoint mit der C# Low Code API erstellt. Sie können verschiedene Diagrammtypen wie ClusteredColumn, Column3D, ClusteredCone und Line usw. festlegen, indem Sie ChartTypeEnum und andere Parameter im Chart-Objekt verwenden, einschließlich ShowDataLabelsOverMaximum, BackWall, SideWall, Floor und Legend usw.

In diesem Artikel haben wir gelernt, wie man in PowerPoint ein Balkendiagramm erstellt. Informationen zum Konvertieren von HTML in PowerPoint finden Sie im Artikel zu Konvertieren Sie HTML in PowerPoint mit der NET REST API.

 Deutsch