Hello,
I am working in VS2012 and trying to implement Column chart in my application. when i try to execute the chart am getting the below exception.
Error executing child request for ChartImg.axd.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Error executing child request for ChartImg.axd.
Source Error:
Line 45: }
Line 46:
Line 47: base.Render(writer);
Line 48: }
Line 49:
I googled through and found everyone saying about adding httphandler
<handlers><add name="ChartImageHandler" preCondition="integratedMode" path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.Cha ...
Go to the complete details ...