I need to put 4 charts on a grid, similar to a dashboard. Two are pie charts, 1 is a lineseries, one is a columnseries. If I attempt to add a second <charting:Chart> in XAML, I get a "The property 'Content' is set more than once error". I
can not use a third party control like telerik for this, it has to come from the silverlight tool kit.
<grid>
<charting:Chart... />
<charting:Chart... />
<charting:Chart... />
<charting:Chart... />
</grid>
This is how I thought it would be arranged but clearly not. Any ideas on how to do this? I should add that this is complicated because each chart has a unique stored procedure behind it for the data.
Thanks