<object>

  <window ondelete="entity:exit">
   <graph name="mine" expand="true"/>
  </window>

<python>
<![CDATA[

graph = enode ("graph.mine")

xml = ""

i = 0;

while (i < 30000):
	graph.new_child ("graph-point", {"color": "#cc0000", 
			 "type": "point", "size": "4", "x": i, 
			 "y" : i});
	i = i + 1

   
]]>
</python>
</object>

