Can anybody give a code snippet which will explain how to use Binary streaming render type in ASP.Net Charting controls using $.ajax call in ASP.Net MVC Framework. ?

Ajax call will look like this-->

$.ajax({              

    type: "POST",

    url: "/DrawChart/" + drawingParamter1+ "/" + drawingParamter2,

    dataType: someSuitableDataType,

    error: function(error) {

    },

    success: function(html) {

    }
});
link|improve this question

58% accept rate
feedback

2 Answers

I am not sure why do you want to use ajax to call a binary stream, but this blog post shows you how to do the binary stream using or using a control.

http://setiabud.blogspot.com/2010/02/using-aspnet-chart-controls-in-aspnet.html

link|improve this answer
I need to draw chart through an asynchronous call. My chart takes 1-2 minutes or sometimes 5 minutes to get drawn. I wish to show loading indicator for the time frame in which chart is being drawn. So I think it is possible through Ajax call(ajaxStrat() & ajaxStop() methods). Please correct me if I am wrong. – Kushal Waikar Mar 2 '10 at 3:18
Why not just save the images as files on the server and then retrieve them? – Johannes Setiabudi Mar 2 '10 at 15:29
feedback

You might want to take a look at these links:

http://msdn.microsoft.com/en-us/library/dd456682.aspx http://support2.dundas.com/OnlineDocumentation/WebChart2005/ImageMaps_ImageMapBinary.html

Found it after a lot of searching.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.