I am trying to create a line chart in the XHTML storage format but I keep getting and error from the server. This is a simple example of what I am sending.
<ac:structured-macro ac:name="chart"">
<ac:parameter ac:name=type">line</ac:parameter>
<ac:parameter ac:name="height">400</ac:parameter>
<ac:parameter ac:name="width">400</ac:parameter>
<ac:parameter ac:name="domainAxisLabelAngel">up90</ac:parameter>
<ac:parameter ac:name="categoryLabelPosition">up90</ac:parameter>
<ac:rich-text-body>
<table>
<thead>
<tr><td>a</td><td>b</td><td>c</td></tr>
</thead>
<tbody>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>5</td><td>6</td><td>7</td></tr>
<tr><td>10</td><td>12</td><td>13</td></tr>
</tbody>
</table>
</ac:rich-text-body>
</ac:structured-macro>
Figured it out the header needs to be inside the tbody
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.