Chart in Fullscreen

I need to be able to create a chart in fullscreen mode(that is the chart size changes with the excel window sized). Is this possible?

regards
Kjetil

Please create the chart in your designer spreadsheet. And use the following method to change the chart title:

Excel excel = new Excel();
excel.Open("d:\\chart.xls");

excel.Worksheets[0].Charts[0].Title.Text = "New Title";

excel.Save("newchart.xls", SaveType.OpenInExcel, FileFormatType.Default, this.Response);

It's available in the latest hotfix.