I've got a datatable with two columns "Status" (string) and "Total" (integer).

 Status       Total
 Success      34
 Missing      2
 Failed       10

I want to databind this into a pie chart with each Status per slice but I'm not sure what method of data binder is required?

Thanks, Jonesy

link|improve this question

77% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Give this a shot:

    DataTable dt = new DataTable();
    dt.Columns.Add("Status");
    dt.Columns.Add("Total");

    dt.Rows.Add("Success", 34);
    dt.Rows.Add("Missing", 2);
    dt.Rows.Add("Failed", 10);

    Chart1.DataSource = dt;
    Chart1.Series["Series1"].XValueMember = "Status";
    Chart1.Series["Series1"].YValueMembers = "Total";
    Chart1.DataBind();

Update: The easiest way to add a legend is probably on the client side:

<Legends>
    <asp:Legend ... />
</Legends>

You can also add it programmatically:

    Chart1.Legends.Add("myLegend");
link|improve this answer
that worked a treat mate! thanks! One more thing if you would :) how do I add a legend to the chart? – iamjonesy Apr 16 '10 at 19:14
Updated the answer with information about legends. – Chris Pebble Apr 16 '10 at 19:25
feedback

I've did some research today and found this article as the best one.

Here's C# code above (by Chris) translated to VB.NET

Enjoy!

Dim dt As New DataTable()
dt.Columns.Add("Status")
dt.Columns.Add("Total")

dt.Rows.Add("Success", 34)
dt.Rows.Add("Missing", 2)
dt.Rows.Add("Failed", 10)

Chart1.DataSource = dt
Chart1.Series("Series1").XValueMember = "Status"
Chart1.Series("Series1").YValueMembers = "Total"
Chart1.DataBind()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.