我有一个融合图表,每次我第一次进入页面,从任何其他页面导航,图表呈现不正确。 subCaption呈现在标题的顶部,并且所有注释都位于不正确的位置。虽然当我使用图表回发到页面或向下钻取到另一个图表时,一切都会正确呈现。
我正在使用融合图表asp.net控件在页面上创建以下内容。
var chart_ActivityCountByCategory = new FusionCharts({
"renderer" : "javascript",
"dataFormat" : "xml",
"renderAt" : "ActivityCountByCategoryDiv",
"id" : "ActivityCountByCategory",
"debugMode" : "0",
"swfUrl" : "https://...removed.../public/FusionCharts/Pie2D.swf?v=1",
"wMode" : "opaque",
"width" : "865",
"height" : "400",
"registerWithJS" : "1",
"dataSource" : "<chart caption='Coaching Activity Durations (mins) by Category' subCaption='from 01 Jul 2012 to 30 Jun 2013 (90 total minutes)' showlegend='1' enablesmartlabels='1' showlabels='1' showpercentvalues='0' legendNumColumns='3' showPercentInToolTip='1' exportEnabled='1' exportAtClient='0' exportAction='download' exportFileName='sportsoffice_chart' exportHandler='/FusionCharts/FCExporter.aspx'><set label='Football Based' value='90' link='j-CoachingCategoryClicked-1000001,FootballBased'/></chart>"
}).render();
起初我得到:
然后我得到:
之前有没有人见过这个问题?有没有人知道如何解决这个问题?