This is a migrated thread and some comments may be shown as answers.

Error loading RadChart image. You may also wish to check the ASP.NET Trace for further details.

4 Answers 198 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Puru
Top achievements
Rank 1
Puru asked on 29 Sep 2012, 08:24 AM
Hi All,

I am using the radchat on some pages. On development environment it work fine, but on production it is showing "Error loading RadChart image. You may also wish to check the ASP.NET Trace for further details.\Display stack trace"  in alert. If i click Cancel then it show the page with-ought the chart.

First it was showing permission issue on the temp folder, i have assigned full control to everyone on temp folder. Now i am getting this alert. I have set  UseSession=false.

IIS 7.5
ASP.NET 4.0 
Telerik Version:- 2012.1.411.40

Please let me solution ASAP, because it is on production issue.

Thanks

4 Answers, 1 is accepted

Sort by
0
Ves
Telerik team
answered on 03 Oct 2012, 01:05 PM
Hi,

Please, see this forum post discussing this problem. My suggestion would be to remove any ChartHttpHandler registration from web.config and then to register it using the Visual Studio smart tag as shown in this help topic (see #4).

Best regards,
Ves
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Waseem
Top achievements
Rank 1
answered on 23 Jul 2013, 05:20 PM
Not work for me. Can you please help me in this?
enter image description here
0
Waseem
Top achievements
Rank 1
answered on 23 Jul 2013, 09:34 PM
This problem has been solved by adding some line in web.config.

Let say my path:
test.com/Checking/Ck/index.aspx

 I added that line in web.config.
  <location path="Checking/Controls/ChartImage.axd">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

Hope such type of things help you in future.

Muhammad Waseem,
the Telerik team
0
Satish
Top achievements
Rank 1
answered on 21 Jul 2016, 02:58 PM

I had the same problem, for IIS7 the Telerik HTTP Handlers that you have in

I solved the issue by adding ChartHttpHandler

<handlers><add name="ChartHandler" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler" /></handlers>

<add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />

and also i added

<telrik:RadChart UseSession="false">

Tags
General Discussions
Asked by
Puru
Top achievements
Rank 1
Answers by
Ves
Telerik team
Waseem
Top achievements
Rank 1
Satish
Top achievements
Rank 1
Share this question
or