When I do it without putting chart type is working fine but when I set it to pie its not working correct. It put all series name as Point 1 the pie is only 1 blue piece (one circle) and it show only first point (Value).
foreach (var tag in tags)
{
HtmlNode tagname = tag.SelectSingleNode("a");
HtmlNode tagcount = tag.SelectSingleNode("span/span");
chart1.Series.Add(tagname.InnerText);
chart1.Series[x].Points.AddY(int.Parse(tagcount.InnerText));
chart1.Series[x].IsValueShownAsLabel = true;
chart1.Series[x].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
x++;
}
You are adding multiple
Series
, each with onePoint
. As a result the charting control only displays the firstSeries
. I believe what you are wanting to do is adding multiple points to a singleSeries
.I'm not sure I understand what you are trying to do with the
HtmlNode
but the code below demonstrate how to build a simple pie chart from aDictionary
using a tag name as Key and an integer as Value.