Search the Community

Showing results for tags 'JSP display 2 charts in one'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  1. 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>