<axesgraph width="300" height="300">
<stackedbarseries name="Fruit Consumption by Year">
<barseries name="2001">
<data x="Apples" y="5" />
<data x="Oranges" y="7" />
</barseries>
<barseries name="2002">
<data x="Apples" y="8" />
<data x="Oranges" y="3" />
</barseries>
</stackedbarseries>
<key align="right" />
</axesgraph>
| barwidth | Real > 0 <= 1 | optional | XML / Tag Library |
| bardepth | Real > 0 <= 1 | optional | XML / Tag Library |
| topbarwidth | Real >= 0 <= 1 | optional | XML / Tag Library |
<axesgraph width="300" height="300"> <stackedbarseries name="Pyramid" topbarwidth="0" bottombarwidth="1"> <barseries name="x"><data key="x" value="2" /></barseries> <barseries name="x"><data key="x" value="3" /></barseries> <barseries name="x"><data key="x" value="4" /></barseries> </stackedbarseries> <axes pos="bottom" type="null" color="none" /> <axes pos="left" type="null" color="none" /> </axesgraph>
| bottombarwidth | Real >= 0 <= 1 | optional | XML / Tag Library |
| bargap | Real >= 0 | optional | XML / Tag Library |
<axesgraph width="300" height="300"> <stackedbarseries name="Pyramid" topbarwidth="0" bottombarwidth="1" bargap="0.4"> <barseries name="A"><data key="A" value="2" /></barseries> <barseries name="A"><data key="A" value="3" /></barseries> <barseries name="A"><data key="A" value="4" /></barseries> </stackedbarseries> </axesgraph>
| 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>