<?xml-stylesheet href="extension.xsl" type="text/xsl"?>

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:tb="http://www.treebuilder.de/namespace">
  <head>
    <title>test</title>
  </head>
  <body>
  <h1>a dynamic coin stack chart</h1>

<chart xmlns="http://www.treebuilder.de/namespace" width="400" height="250" class="test">
  <nVPair>
    <name>Item 1</name>
    <value>19351</value>
  </nVPair>
  <nVPair>
    <name>Item 2</name>
    <value>15885</value>
  </nVPair>
  <nVPair>
    <name>Item 3</name>
    <value>13127</value>
  </nVPair>
  <nVPair>
    <name>Item 4</name>
    <value>9619</value>
  </nVPair>
  <nVPair>
    <name>Item 5</name>
    <value>9243</value>
  </nVPair>
</chart>
<br/>
each time you reload this page, a new random set of values will be created at the server, and a new document is send to the client. it gets transformed by xslt. the xslt is cached, so only downloaded once.
that means that subsequent reloads of the page with different data cost around 0.5K traffic !


  </body>
</html>
