Got html from WebServices.
With these additional settings to chart control:
chert.UseSession =
false;
chert.TempImagesFolder =
"~/TempImages/";
Having problem getting chart html from WebService. My task it to have it on client side from WS.
Failed with both of implementations below:
1.
Having "Object reference not set to an instance of an object." on call chert.RenderControl(htmlWriter);
2.
Having "Error executing child request for handler 'ChartTest.TempRenderer'" there on Server.Execute.
3. Eventually created just page "chart.aspx" wiht just single chart control decalred
<
telerik:RadChart ID="chert" runat="server" Width="500px" Height="290px" EnableViewState="false" SkinsOverrideStyles="false" ></telerik:RadChart>
and trying this in WebMethod:
Having ex:" Error executing child request for chart.aspx."
As I understand the reason of all these exceptions is ChartImage.axd
handler.
If somebody can help - please, it's very urgent.
Thank you.