JQuery affecting Google Chart Display -
the below code displays messed-up chart,
function() displaygooglechart() { /* displays chart */ } $("#chartdiv").hide(); displaygooglechart(); $("#chartdiv").show();
code displays fine, so:
$("#chartdiv").hide(); $("#chartdiv").show(); displaygooglechart();
why happening?
it has methods google
uses determine heights , widths of various chart items, @dwaddell commented.
i try using container div
enclosing #chartsdiv
, , see if same thing occurs when hiding , showing containing div
.
Comments
Post a Comment