PPTX Builder API
PPTX BuilderBook a demoAccount
v2
v2
  • Introduction
  • Guide
    • Create account
    • Get API Token
    • Webhook
    • Preparing Slides
  • Concepts
    • Intro
    • Slide Masters
    • Slide Layouts
    • Placeholders
    • Slide
  • API Reference
    • Authentication
    • JSON to PPTX Builder
      • Request Payload
        • Base Settings
        • Custom Settings
        • Global Chart Settings
        • Slide Settings
        • Chart Settings
          • Chart View Settings
        • Columns
        • Rows
        • Significance Test
        • Chart Title
    • JSON to PPTX
    • Append slide
      • Request Payload
    • Upload template
  • Fonts
  • Chart Types
  • Data Labels
  • Legend
  • Chart Specific Settings
  • Examples
    • JSON to PPTX Builder
    • API Token
    • Append slide
    • More examples
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. JSON to PPTX Builder
  3. Request Payload

Chart Title

Within each slide you can provide a chart title value and this will be rendered in the chart and in the downloaded presentation.

Example in JSON

{
    "chart_title": "custom title"
}

Example slide JSON with Chart Title

{
    "chart_title": "custom title",
    "rows": [],
    "columns": [],
    "view_settings": {
        "chart_type": "bar",
        "placeholder_index": 0,
        "show_chart_title": true,
        "chart_title_font_bold": true,
        "chart_title_font_size": 13,
        "chart_title_font_color": "rgb(123,123,123)",
        "chart_title_font_family": "arial_narrow"

    }
}
PreviousSignificance TestNextJSON to PPTX

Last updated 4 years ago

Was this helpful?