Various types of charts
All chart types provided by PowerPoint are supported.
Here are a few examples:
These can be customized using the standard data and settings parameters in your payload.
Reference: chart
Line chart
Download: input.zip | output.pptx


{
"presentation": {
"template": "template.pptx",
"slides": [
{
"slide_index": 0,
"shapes": [
{
"name": "Chart 1",
"title": "Quarterly Business Performance (2025)",
"data": [
[
"Revenue",
"Expenses",
"Profit"
],
[
"Q1",
"Q2",
"Q3",
"Q4"
],
[
5.2,
3.1,
4.6
],
[
2.8,
2.5,
3.2
],
[
2.4,
0.6,
1.4
],
[
1.3,
4.0,
2.4
]
]
}
]
}
]
}
}
Bar chart
Download: input.zip | output.pptx


Stacked Bar chart
Download: input.zip | output.pptx


Stacked Area chart
Download: input.zip | output.pptx


Bar/Line Combo chart
Download: input.zip | output.pptx


Scatter chart
Download: input.zip | output.pptx


Last updated
Was this helpful?