visibleequity

Members
  • Content count

    2
  • Joined

  • Last visited

About visibleequity

  • Rank
    Forum Newbie
  1. Chart Rendering Javascript Vs Flash

    Angie, I tried your modified code and we are still getting the same thing, with the chart labels on top of the chart instead of out to the side. See my code below <script type="text/javascript" src="../FusionCharts/FusionCharts.js"> </script> <div id="chartDiv" align="center"></div> <c:if test="${chartXml != null}"> <script type="text/javascript"> <!-- var myChart = new FusionCharts("../FusionCharts/Pie2D.swf", "chartId", "450", "220", "0", "1"); myChart.setDataXML("${chartXml}"); myChart.render("chartDiv"); --> </script> </c:if>
  2. Please look at the attached images. When our charts are rendering in javascript, the labels lay on top of the chart as opposed to on the side as you see in the flash chart. Does anyone have ideas on what we can do to fix this? Thanks Here is the code: <div id="chartDiv" align="center"></div> <script type="text/javascript"> <!-- FusionCharts._fallbackJSChartWhenNoFlash(); var myChart = new FusionCharts("../FusionCharts/Pie2D.swf", "chartId", "450", "220", "0", "0"); myChart.setDataXML("<chart caption='Unpaid Balance' numberPrefix=' bgColor='FFFFFF' showBorder='0'><set label='1-14' value='7.666721286E7' /><set label='15-29' value='1.1024216313E8' /><set label='30-59' value='6.107525353E7' /><set label='60-89' value='2.04661962E7' /><set label='90-119' value='1.181278566E7' /><set label='120-179' value='4718099.38' /><set label='180-359' value='8715898.09' /><set label='>= 360' value='4833479.03' /></chart>"); myChart.render("chartDiv"); --> </script>