यह आलेख C# REST API के साथ ** PowerPoint में बार चार्ट कैसे बनाएं** के बारे में मार्गदर्शन करता है। आप सीखेंगे कि .NET-आधारित क्लाउड SDK का उपयोग करके C# RESTful Service के साथ PowerPoint में बार ग्राफ़ कैसे बनाएं। इसमें चार्ट जोड़ने और डेटा सेट करने की पूरी जानकारी है।
पूर्वावश्यकता
डाउनलोड करना Aspose.Slides Cloud SDK for Dotnet to add a chart
प्रेजेंटेशन में ग्राफ़ के साथ काम करने के लिए उपरोक्त एसडीके के साथ सी# प्रोजेक्ट सेटअप करें
C# .NET-आधारित API के साथ PowerPoint में कॉलम चार्ट जोड़ने के चरण
- चार्ट जोड़ने के लिए क्लाइंट आईडी और रहस्य के साथ SlidesApi को प्रारंभ करें
- प्रेजेंटेशन फ़ाइल को क्लाउड पर अपलोड करें
- चार्ट क्लास का उपयोग करके एक नया चार्ट कॉन्फ़िगरेशन ऑब्जेक्ट बनाएं और चार्ट प्रकार सेट करें
- चार्ट शीर्षक जोड़ें और चार्ट के लिए श्रेणियां प्रारंभ करें
- चार्ट के लिए डेटा श्रृंखला प्रारंभ करें, डेटा श्रृंखला बनाएं, और पहली डेटा श्रृंखला जोड़ें
- यदि आवश्यक हो तो चार्ट के लिए अधिक डेटा श्रृंखला प्रारंभ करें
- CreateShape() विधि का उपयोग करके चार्ट को प्रस्तुति की पहली स्लाइड में जोड़ें और यदि आवश्यक हो तो इसे डाउनलोड करें
ये चरण वर्णन करते हैं C# .NET-आधारित API के साथ PowerPoint में बार चार्ट कैसे बनाएं। SlidesApi ऑब्जेक्ट बनाएं, प्रेजेंटेशन अपलोड करें, एक चार्ट ऑब्जेक्ट बनाएं, चार्ट प्रकार, स्थिति, आयाम, शीर्षक, श्रेणियां और वांछित डेटा श्रृंखला सेट करें। चार्ट में डेटा श्रृंखला जोड़ें और चार्ट को पहली स्लाइड में जोड़ें।
C# REST इंटरफ़ेस के साथ PowerPoint में बार ग्राफ़ बनाने के लिए कोड
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 | |
} | |
} | |
} |
यह कोड C# लो कोड एपीआई के साथ पावरपॉइंट में बार ग्राफ कैसे बनाएं की प्रक्रिया को प्रदर्शित करता है। आप ChartTypeEnum और चार्ट ऑब्जेक्ट में अन्य पैरामीटर्स का उपयोग करके अलग-अलग चार्ट प्रकार जैसे ClusteredColumn, Column3D, ClusteredCone, और Line आदि सेट कर सकते हैं, जिसमें ShoDataLabelsOverMaximum, BackWall, SideWall, फ़्लोर और लीजेंड आदि शामिल हैं।
इस लेख ने हमें PowerPoint में बार चार्ट बनाना सिखाया है। HTML को PowerPoint में कनवर्ट करने के लिए, NET REST API के साथ HTML को PowerPoint में कनवर्ट करें पर आलेख देखें।