Chart styling
Specify the chart title under
titleif necessary.Under
settings, you can:Insert chart legend related settings (see Adjust chart legend section).
Configure chart legend options such as
chartShowLegend,chartLegendPosition,chartLegendFontColor, andisChartLegendBold.Define the desired chart title using
title.Set the font and size with
chartFontandchartFontSizeOptionally, adjust the data label color using
chartDataLabelColor(e.g.,"Red","Black","Green"color names only).
Reference: chart
Download: input.zip | output.pptx


{
"presentation": {
"template": "template.pptx",
"slides": [
{
"slide_index": 0,
"shapes": [
{
"name": "Chart 1",
"settings": {
"chartShowLegend": true,
"chartLegendPosition": "Bottom",
"chartLegendFontColor": "255,0,0",
"isChartLegendBold": true,
"title": "Average Annual Precipitations",
"chartFont": "Trebuchet MS",
"chartFontSize": 20,
"chartDataLabelColor": "Red"
}
}
]
}
]
}
}Last updated
Was this helpful?