c# bind winforms chart to list of objects
问题 I have a list of objects defined like this: public class ChartData { public int New { get; set; } public int Closed { get; set; } public int Canceled { get; set; } } How can I bind a winforms-chart (bar-chart type) to a List<ChartData> ? I need to have a series for each property in the object (ie, I will have 3 series) and for each point in the chart, I want to see the values for all 3 properties in the object. I managed to programatically add the series (they're visible in the chart), but