In my ASP.NET applicaiton, i have used microsoft chart control and generated Doughnut and Bar charts.
Now, i need to implement ZOOM IN and ZOOM OUT feature.
I could not found any default way in ASP.NET - microsfot chart control to achieve this.
It would be great if any one can suggest through Javascript/JQUERY if achievable.
Below is stuff which able to zoom IN ZOOM OUT but it reduce from actual size and then make it just rest to actual size. I need to increase the size to zoom out.
$('#image').hover(function(){
$(this).css({width:"100%",height:"100%"});
},function(){
$(this).css({width:"50%",height:"50%"});
});
Thank You Dhaval Soni