This is a migrated thread and some comments may be shown as answers.

Define series from XML

1 Answer 70 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Martijn
Top achievements
Rank 1
Martijn asked on 16 Aug 2007, 09:07 PM

I have generated the following XML:

<?xml version="1.0" encoding="utf-8" ?>   
<HapTestWaarden xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">  
  <Waarde motorA="74" motorB="57" motorC="0" />   
  <Waarde motorA="75" motorB="48" motorC="0" />   
  <Waarde motorA="11" motorB="38" motorC="0" />   
  <Waarde motorA="14" motorB="26" motorC="0" />   
  <Waarde motorA="71" motorB="14" motorC="0" />   
  <Waarde motorA="-5" motorB="39" motorC="0" />   
  <Waarde motorA="-2" motorB="74" motorC="0" />   
  <Waarde motorA="46" motorB="11" motorC="0" />   
  <Waarde motorA="74" motorB="12" motorC="0" />   
  <Waarde motorA="95" motorB="11" motorC="0" />   
  </HapTestWaarden> 

Now i want to place this data into a radChart. In the radChart there needs to be three series defined: motorA, motorB, motorC. These values must be placed on the Y-axis.

I`m new to using Series and cant get this working.

1 Answer, 1 is accepted

Sort by
0
Kiril
Telerik team
answered on 17 Aug 2007, 10:19 AM
Hi Martijn,

Thanks for reaching us with this question.

There is an example in the Quick Start Framework which covers your scenario partially. In the databinding section of the RadChart examples, you can find an example named XML, which binds the data in an XML file to a piechart. 

In your specific scenario, you first need to initialize the type of chart you need (line, area, bar, etc) using the wizard in design view. Then you need to bind the RadChart to the XML file. You can do that with the code block below:

//load the xml file to be displayed  
radChart1.DataSource = "..\\Chart\\DataBinding\\XMLBinding\\data.xml";   
radChart1.DataBind(); 

Let me know if you have any additional questions. Your feedback is very important to us.

 
Kind regards,
Kiril
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Chart (obsolete as of Q1 2013)
Asked by
Martijn
Top achievements
Rank 1
Answers by
Kiril
Telerik team
Share this question
or