To resize the WebChart you should use something like :
WebChart1.Width = Unit.Pixel(700);
WebChart1.Height = Unit.Pixel(700);
Josep Lluis Jorge
http://support.steema.com
Dynamically change chart size ??
Hello,
This post is a little old now but worth saying I think that the following should be considered as an option if only the exported image size is to be modified.
Regards,
Marc Meumann
Steema Support
This post is a little old now but worth saying I think that the following should be considered as an option if only the exported image size is to be modified.
Code: Select all
tChart1.Export.Image.GIF.Width=xxx;
tChart1.Export.Image.GIF.Height=xxx;
tChart1.Export.Image.GIF.Save(@"c:\myImages\GIFChart.gif");
Marc Meumann
Steema Support