每个页面上的图表应使用不同的DIV来渲染.
每个页面上的图表都应该有一个不同的ID(在Javascript的容器中指定)
每个图表都有它自己的JavaScript变量名 (如, var chart1 = new FusionCharts(...); var chart2 = new FusionCharts(...); )
下面是一个例子所示页面包含多个图表。该网页命名为MultipleCharts.html,并存储在MyFirstChart文件夹。
The chart will appear within this DIV. This text will be replaced by the chart.
The chart will appear within this DIV. This text will be replaced by the chart.
正如你在这里看到的,我们在这个页面上嵌入了两个图表.一个3D柱状图一个3D饼图。柱状图有一个名为myChart1的ID,它对应的DIV名字叫chart1div,图表变量叫myChart1.饼图具有不同的ID、DIV名和图表变量。
运行这个页面,你会看到这个页上的两个图表。