.NET chart Datamanipulator
- by peter
In .NET C#4.0 with the .NET Chart control I have this code to generate a pie chart:
chart.Series[0].ChartType = SeriesChartType.Pie;
foreach (Order order in orderCollection) {
// If I set point.LegendText = order.UserName, .Group will erase it
chart.Series[0].Points.AddXY(order.UserName, order.Total);
…