我有一个融合图表,每次我第一次进入该页面时,从任何其他页面导航时,图表都会错误地呈现。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();
起初我得到:
然后我得到:
有没有人见过这个问题?有谁知道如何解决这个问题?