Chart - Main Chart Object

Each chart is contained in its own part like chart1.xml.

Chart.font

By default, a new chart appears with an 18-point font that is applied to its axes, the legend, tick labels, etc. The size, color, etc. can be specified for the chart as a whole by settings attributes on /c:chartSpace/c:txPr/a:p/a:pPr/a:defRPr.

XML Specimens

Default c:txPr element:

<c:chartSpace>
  <!-- ... -->
  <c:txPr>
    <a:bodyPr/>
    <a:lstStyle/>
    <a:p>
      <a:pPr>
        <a:defRPr sz="1800"/>
      </a:pPr>
      <a:endParaRPr lang="en-US/>  <!-- may be locale dependent -->
    </a:p>
  </c:txPr>
  <!-- ... -->
</c:chartSpace>