L_E

Members
  • Content count

    13
  • Joined

  • Last visited

Posts posted by L_E


  1. Dear all,

    i've just recently used fc v3.

    and it seems it failed to display chart in ie8.

     

    i've tried the php demo on mozila and ie6 it works perfectly.

    but does not display chart in ie8 (failed to display chart)

    it only display blank n a little icon.

     

    i've check the basic debugg (such as activate active control etc), it still does not work.

    and i've search in inet .. there still no answer found.

     

    thanks before for your response.

     

     

    I use it in IE8 and it works fine for me. Its probably an issue with either your HTML or XML/JSON. I've seen times where Firefox would be more forgiving of errors, but IE was not and vice versa.

     

    Try the "Creating your first Fusion Chart" tutorial in the documentation. That will let you easily test to make sure Fusion Charts works on a system.

    Just use their example with their data, so you know everything is correct.


  2. The example you listed is if you have a bunch of bars, the system will use the maximum space available. Try what I have below and see if you see a problem.

     

    With a value of '20' the bar should be much thicker, but because you have so many bars, it adjusts the thickness to fit the chart size.

     

     

     

    1st:

    <chart bgColor='F7F7F7' showExportDataMenuItem='1' caption='Risk Measure Summary' useRoundEdges='1' plotGradientColor='' showValues='0' yAxisName='Number' plotSpacePercent='20'>

    <set value='5.6' label='Risk Score' />

    </chart>

     

     

    Then, this:

     

    <chart bgColor='F7F7F7' showExportDataMenuItem='1' caption='Risk Measure Summary' useRoundEdges='1' plotGradientColor='' showValues='0' yAxisName='Number' plotSpacePercent='19'>

    <set value='5.6' label='Risk Score' />

    </chart>

     

     

    Then this,

    <chart bgColor='F7F7F7' showExportDataMenuItem='1' caption='Risk Measure Summary' useRoundEdges='1' plotGradientColor='' showValues='0' yAxisName='Number' plotSpacePercent='21'>

    <set value='5.6' label='Risk Score' />

    </chart>


  3. When I use the Bar2D chart, I can set the plotSpacePercent to control the thickness of the bar. The lower the number, the thicker the bar gets.

     

    Unless, you put in 20. If you put in '19' or '21', the bar is very thick. If you put in '20', the bar gets very thin (like 80%).


  4. Thanks, that worked perfectly!

     

    The default seems to be '80', so the lower you go, the thicker the bar gets.

     

    Hi,

     

    Please try the same by setting <plotSpacePercent='0'> attribute inside the <chart> element.

    On a bar chart, there is spacing defined between two bars. By default, the spacing is set to 20% of canvas width. If you intend to increase or decrease the spacing between bars, you can do so using this attribute.

     

    For more details, please refer to the link:http://www.fusioncha...rtSS/Bar2D.html

    Hope this helps.smile.gif


  5. No, they do not need to be. Your html file just needs to point to the correct location of the SWF and JS files.

     

    The documentation has a really simple, "build your first fusion chart" example.

     

    This is the quick example I use to test XML on my desktop before building the real thing:

     

    <html>

    <head>

    <title>My First chart using FusionCharts</title>

    <script type="text/javascript" src="../FusionCharts/FusionCharts.js"> </script>

    </head>

     

    <body>

     

    <div id="chartContainer">FusionCharts will load here!</div>

    <script type="text/javascript">

    var myChart = new FusionCharts( "../FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "1" );

    myChart.setXMLUrl("Data.xml");

    myChart.render("chartContainer");

    </script>

    </body>

     

    </html>


  6. I have an application that is working fine and I've never had issues with Fusion Charts.

     

    Recently, I tried to upgrade from 3.1 to 3.2.1 because there are a few new charts I'd like to try.

     

    I replaced the SWF files and Added/Replace the JS files. After that, I cleared my browser cache and tried to view the charts, but I just get the Chart Header, but no chart. Just the word Fusion Charts where it should be.

     

     

    I went back to my old versions, and it worked fine.

     

    Then, I tried just replacing the SWF files and it still worked.

    Then, I added the new JS files and that is when it broke.

     

     

    Any ideas?