This is an example of a simple linechart with minimal customization. By
specifying additional attributes, one can exercise much greater control over
the visual appearance of the chart. (See: /test/charting/ for more detailed
examples.)
<canvas width="800" height="600">
<dataset name="dset" request="true" src="resources/linechart_data_01.xml"/>
<linechart name="testchart" width="600" height="400" datapath="dset:/"
minimum="-13" maximum="100" altminimum="0" altmaximum="13">
<chartdata>
<dataseries xdatapath="data/year[1]/month/@number"
ydatapath="data/year[1]/month/@projected"
pointsvisible="#FF9988" linesvisible="#FF9988"
label="data/year[1]/month/@projected"/>
<dataseries xdatapath="data/year[2]/month/@number"
ydatapath="data/year[2]/month/@projected"
pointsvisible="#B68B66" linesvisible="#B68B66"
label="data/year[2]/month/@projected"/>
</chartdata>
</linechart>
</canvas>