Error executing child request for ChartImg.axd
I too have been struggling with this problem. In my case the first execution of the page in question always failed, after a refresh everything worked fine. I can reproduce this by stopping and starting the web server.
After extensive research I found the post above from Paul Looijmans where he says -
"....if the chart is initialized for the first time in a POST (i.e. a postback) the error is thrown because the handler is configured incorrectly... modify the httpHandler configuration ... by adding the POST verb:
<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
Problem solved! Thanks to Paul.