I've read many posts regarding this but I still can't find a solution to my problem.
I currently have a graph (stacked bar) in a report created with Visual Studio designer.
I then try to bind some data to the graph, but the graph always appears empty in the previews:
public GraphReport()
{
InitializeComponent();
var h1 = new Person
{
Name = "John",
Age = 28
};
var h2 = new Human
{
Name = "Carl",
Age = 31
};
var list = new List<Human> { h1, h2 };
graph1.DataSource = list;
}