Hello,
I want to display 2 charts - 1 pie chart and 1 column chart inside one <tr>
But it comes one under another.
Can someone tell me how to solve this problem, here is my code snippet and also I put the image file of the chart
<tr>
<td align="left">
<tags:template2>
<fc:render chartId="${purRedNetBean.chartIdPie}" swfFilename="/ChartHandler-portlet/FusionCharts/Pie2D.swf"
width="450" height="200" debugMode="false" registerWithJS="false" xmlData="${purRedNetBean.pieXml}" />
</tags:template2>
</td>
<td align="right">
<tags:template2>
<fc:render chartId="${purRedNetBean.chartIdColumn}" swfFilename="/ChartHandler-portlet/FusionCharts/Column2D.swf"
width="450" height="200" debugMode="false" registerWithJS="false" xmlData="${purRedNetBean.columnPurRedNetXml}" />
</tags:template2>
</td>
</tr>