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) {
}
});