Hi,
Please try to set the Chart control to render images into files. For example:
Code: HTML/ASPX
<asp:Chart ....
ImageStorageMode="UseImageLocation"
ImageLocation="~/chart_images/#SEQ(100,10)">
.....
</asp:Chart>
ImageStorageMode="UseImageLocation" specifies that the chart should create image files. ImageLocation specifies the location of the image files. "#SEQ(100,10)" instructs the Chart control to create 100 image files maximum with a life time of 10 minutes (you can change those numbers to fit your need), older files will be automatically cleaned up by the Chart control.
We are also working to allow the Chart control to work in the default HTTP handler mode. We will reply again once that is supported.
Thanks!