I have BindingLists
that store some objects I want to visualise on chart.
BindingList<Place> places;
BindingList<Person> people;
BindingList<Animal> animals;
All of them implement following interface:
interface IMapObject
{
int getPositionX();
int getPositionY();
}
How can I easily bind them all to single WinForms Point Chart? Every List need to be in separate Series
. Chart should update automatically when I add new object to one of those lists.