Charts are one of the important components for presenting information during presentations. When facts and figures are backed up with appropriate and corresponding graphs, charts, or tables in a PPT, the information presented becomes stronger and impactful. Apart from carrying a great visual appeal, these graphs, charts, or tables impart relevant business information to your target audiences in an arranged manner. In this article, we are going to discuss the steps on how to create or modify charts in PowerPoint using REST API.
Info: Aspose provides a FREE PowerPoint to PDF converter that allows you to convert presentations to PDF.
Benefits of Charts in PPT
We can derive many benefits of delivering data in different graphs, charts, or tables in a PPT:
- Graphs, charts, pictorial diagrams, or tables present information in a concise, consistent, and compact style. Target-audiences grasp the meaning of the data quickly.
- They are visually more engaging than plain textual content. And your PPT automatically becomes more engaging with their rightful assimilations.
- Audiences always want to draw some conclusions from the slides and they help to understand the core conclusion of the presentation.
- Making assessments of facts becomes easier as visual modes allow comparison of different data and numbers.
- More can be said, more facts can be accommodated and arranged in a terse manner, which is the beauty of graphs and charts in a PPT.
- They help your prospective clients make important inferences on different finer aspects of your business on different comprehensible parameters.
PowerPoint processing API
Aspose.Slides Cloud is REST based API providing the capabilities to create and manipulate PowerPoint and OpenOffice presentation files. In the recent release version, the new resource is a subresource of shape. It works only for Chart shapes and allows us to add, modify & delete chart series.
Add Series to Chart
POST https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series?folder=myFolder
Request Body
{ "dataPointType": "OneValue", "dataPoints": [{ "value": 5.5</code> <code>}, { "value": 76</code> <code>}, { "value": 27</code> <code>}] }
Update Chart Series
PUT https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2?folder=myFolder
Request Body
{ "dataPointType": "OneValue", "dataPoints": [{ "value": 5.5</code> <code>}, { "value": 76</code> <code>}, { "value": 27</code> <code>}] }
Delete Chart Series
DELETE https://api.aspose.cloud/v3.0/slides/myPresentaion.pptx/slides/1/shapes/1/series/2?folder=myFolder
Related Articles
We also recommend you to visit the following links to learn more about: