Is there any built in functionality to expand a graph to a big size and make it go back to normal again...something like enlarge image etc.
Let me know the available options to do it
The only way to do this would be to change the size of the chart control. You can toggle the size between one that's large and one that 's small on double click. Just make sure that this is handled on the server side, since the chart needs to be redrawn on each size change.
I have used infragistics piechart to show like this. When the user double clicks on this, I want to show it in big size like enlarge image we see in some websites. Is there any built-in functionality like this.
You can use our built-in scale/scroll:
this.ultraChart1.Axis.X.ScrollScale.Visible = true;
If this is not what do you want, can you provide us a little more info?