There are two ways for changing your chart's resolution, but both will be through code:
1) Your Chart resolution is definable in Pixels :
for this you need to write like :
SemeChart.Height = IntegralHeight; // Only integers allowed for assigning height here
SemeChart.Width = IntegralWidth; // Only integers allowed for assigning width here
2) If you need to make your chart flexible in all resolutions, you need to go for this option.
You will need to store the chart image and then you can change image's resolution in form : pixel/percentage.
// Your code for preparing chart here
SomeChart.SaveImage(ImageUrl);
SomeImageControl.ImageUrl=ImageUrl;
SomeImageControl.Height = "HeightInPercentage";
SomeImageControl.Width = "WidthInPercentage";
Dhruv Patel
[ Email : mail2dhruv@rocketmail.com ]
Please Mark As Answer if you think the answer was correct.