I think this might be due to the different treatment of the object/
embed tab in the code generated by the ziya_chart
helper. There was an issue in the helper a while back with the
generation of the id tags. I believe this is fixed in the
latest version of ZiYa.
Here is my setup, which I believe works on both FF and IE...
View template
<%= ziya_chart load_chart_url, :id => "chart", :width =>
400, :height =>300, :wmode => "transparent"%>
Javascript
function update_it( update )
{
document.chart.SetVariable( 'update_xml', update );
}
Note: document.xxx needs to match the id specified in the
ziya_chart helper...
-Fernand