Hi
I am trying to resize my charts whenever the browser is resized but with no luck.
I call the following JS function whenever the page is resized but nothing happens. I tries calling the render() method on the chart object but got an error that property or method is not supported.
In the jsp, I declared the chart size in pixels.
Any help wil be appreciated.
[b]
function[/b] setFCNewData() {
[b]var[/b] chartObj = getChartFromId('summaryChartId');
chartObj.setVariable('chartWidth','100');
}