I have an xml file:
<Database>
<Stat>
<Date>06/07/2009 00:00:00</Date>
<DayOfWeek>Monday</DayOfWeek>
<SentNumber>3248</SentNumber>
<ReceivedNumber>50</ReceivedNumber>
</Stat>
<Stat>
<Date>07/07/2009 00:00:00</Date>
<DayOfWeek>Tuesday</DayOfWeek>
<SentNumber>1000</SentNumber>
<ReceivedNumber>500</ReceivedNumber>
</Stat>
</Database>
I want to populate a Microsoft Chart Control bar chart in C# with the contents however i'm very confused about how to do this from the available tutorials. Any help would be greatly appreciated!