Like all Microsoft Office applications, PowerPoint supports the creation
of embedded charts. You can easily create bar, line, pie, and other type
charts and edit the data of the charts.
A view of the chart editor in PowerPoint (see Image 33 ).
From the sample "Human-Computer Interaction" presentation, the original PowerPoint slide 10 (see Image 34).
<!-- Slide 10 -->
<img src="Slide10.jpg" alt="Slide 10">
<H1>Historical Grade Distribution</H1>
In order to access the underlying data of the chart, simply right-click the chart and select the "Chart Object" and then "Edit" (see Image 35 ).
This allows you to edit and view the numeric data of the chart. For this chart, the numbers are shown (see Image 36 ).
Note: In creating accessible HTML tables, you are required to provide the header, body, summary, and caption information and make sure that the table linearizes well and will make sense to screen readers.
<!-- Slide 10 -->
<img src="Slide10.jpg" alt="Slide 10">
<H1>Historical Grade Distribution</H1>
<table border="1" summary="This table shows the
number of grades (A, B, C, D, and F) that students earned for the
course in 2001 and 2002.">
<caption>
Number of Each Grade that Students Earned
</caption>
<thead>
<tr>
<th scope="col">Grade</th>
<th scope="col">Number
Earned in 2001</th>
<th scope="col">Number
Earned in 2002</th>
</tr>
</thead>
<tbody>
<tr>
<td>F</td>
<td>15</td>
<td>12</td>
</tr>
<tr>
<td>D</td>
<td>10</td>
<td>4</td>
</tr>
<tr>
<td>C</td>
<td>34</td>
<td>11</td>
</tr>
<tr>
<td>B</td>
<td>12</td>
<td>10</td>
</tr>
<tr>
<td>A</td>
<td>29</td>
<td>33</td>
</tr>
</tbody>
</table>
The table displays the grade information with the header row highlighted. The caption "Number of Each Grade that Students Earned" is also displayed above the table.
Note: It might be beneficial to pivot the data (changing rows to columns and columns to rows) such that the resultant table is easier to read.
The next page will discuss how to convert a slide with non-outline text.