Hozzon létre oszlopdiagramot a PowerPointban a C# REST API segítségével

Ez a cikk bemutatja, hogyan hozhat létre sávdiagramot a PowerPoint alkalmazásban a C# REST API-val**. Megtanulja, hogyan hozhat létre oszlopdiagramot PowerPointban a C# RESTful Service segítségével .NET-alapú Cloud SDK használatával. Teljes információt tartalmaz a diagram hozzáadásával és a beállítási adatokkal kapcsolatban.

Előfeltétel

Oszlopdiagram hozzáadásának lépései a PowerPointban C# .NET-alapú API-val

  1. A diagram hozzáadásához inicializálja a SlidesApi-t egy ügyfél-azonosítóval és titkossággal
  2. Töltse fel a bemutató fájlt a felhőbe
  3. Hozzon létre egy új diagram konfigurációs objektumot a Chart osztály segítségével, és állítsa be a diagram típusát
  4. Adja hozzá a diagram címét, és inicializálja a diagram kategóriáit
  5. Inicializálja a diagram adatsorait, hozza létre az adatsorokat, és adja hozzá az első adatsort
  6. Ha szükséges, inicializáljon további adatsorokat a diagramhoz
  7. Adja hozzá a diagramot a prezentáció első diájához a CreateShape() módszerrel, és töltse le, ha szükséges

Ezek a lépések azt írják le, hogyan hozhat létre oszlopdiagramot PowerPointban C# .NET-alapú API-val. Hozza létre a SlidesApi objektumot, töltse fel a prezentációt, hozzon létre egy diagram objektumot, állítsa be a diagram típusát, pozícióját, méreteit, címét, kategóriáit és kívánt adatsorait. Adja hozzá az adatsorokat a diagramhoz, és adja hozzá a diagramot az első diához.

Kód oszlopdiagram létrehozásához a PowerPointban C# REST felülettel

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

Ez a kód azt a folyamatot mutatja be, hogyan lehet oszlopdiagramot készíteni a PowerPointban a C# Low Code API-val. Különféle diagramtípusokat állíthat be, például ClusteredColumn, Column3D, ClusteredCone és Line stb., a ChartTypeEnum és a Chart objektum egyéb paramétereinek használatával, beleértve a ShowDataLabelsOverMaximum, BackWall, SideWall, Floor és Legend stb.

Ez a cikk megtanított minket egy oszlopdiagram létrehozására a PowerPointban. A HTML PowerPoint formátumba konvertálásához olvassa el a következő cikket: A HTML konvertálása PowerPoint formátumba a NET REST API segítségével.

 Magyar