<axesgraph width="300" height="300">
<scatterseries name="My Line Series">
<data x="1" y="5" />
<data x="2" y="7" />
<data x="3" y="12" />
</scatterseries>
</axesgraph>
| type | String | mandatory | XML / Tag Library |
| size | small | medium | large | optional | XML / Tag Library |
| rotate | Real | optional | XML / Tag Library |
| name | String | mandatory | XML / Tag Library |
| pos | (top | bottom) (left | right) | optional | XML / Tag Library |
<axesgraph width="300" height="300">
<axis pos="bottom" type="date">
<teeth rotate="90" align="left middle" />
</axis>
<axis pos="top" type="bar" />
<lineseries pos="bottom left" name="Amount over the year">
<data x="2003-01-01" y="20" />
...
<data x="2003-12-31" y="17" />
</lineseries>
<barseries pos="top left" name="Average amount per weekday">
<data x="Sun" y="18" />
...
<data x="Sat" y="21" />
</barseries>
</axesgraph>| color | Paint | optional | XML / Tag Library |
| bordercolor | Color | optional | XML / Tag Library |
| linethickness | Real > 0 | optional | XML / Tag Library |
| dash | Real[] | optional | XML / Tag Library |
dash="5,5" to create a regular dash pattern,
or dash="6,2,2,2" to create a dash/dot type pattern.