Trouble Importing XML
Posted: Tue Dec 05, 2006 8:56 pm
I'm having a hell of a time importing XML data. Here's the XML file:
<chart>
<series title="rc1" type="Fast Line">
<points count="3">
<point X="0" Y="0"/>
<point X="10" Y="10"/>
<point X="20" Y="20"/>
</points>
</series>
<series title="rc2" type="Fast Line">
<points count="3">
<point X="0" Y="20"/>
<point X="10" Y="10"/>
<point X="20" Y="0"/>
</points>
</series>
</chart>
How do I properly import this into a chart that has two fastlines added to it, namely rc1 and rc2? Thanks.
<chart>
<series title="rc1" type="Fast Line">
<points count="3">
<point X="0" Y="0"/>
<point X="10" Y="10"/>
<point X="20" Y="20"/>
</points>
</series>
<series title="rc2" type="Fast Line">
<points count="3">
<point X="0" Y="20"/>
<point X="10" Y="10"/>
<point X="20" Y="0"/>
</points>
</series>
</chart>
How do I properly import this into a chart that has two fastlines added to it, namely rc1 and rc2? Thanks.