L_E

Members
  • Content count

    13
  • Joined

  • Last visited

Everything posted by L_E

  1. 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. Bar2D Thickness Bug

    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%).
  3. Bar2D Thickness Bug

    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>
  4. I've been looking through the documents, but I can't find this. On a Bar2D chart, can you make the bar thicker?
  5. Bar2D Chart - Thicker Bar

    There seems to be a bug when you set the value to 20, so I reported that in the bug section. I'll just set it to 19. Thanks,
  6. Bar2D Chart - Thicker Bar

    Thanks, that worked perfectly! The default seems to be '80', so the lower you go, the thicker the bar gets.
  7. Day Chart

    HeatMap Chart, but that is in PowerCharts. Otherwise, try http://www.fusioncharts.com/gallery/Category.asp?Marimekko or a Column2D with 31 columns.
  8. 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>
  9. Is there a way to have a stacked column with an Area? If not, that would be a great feature.
  10. 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?
  11. I found this in another posting: Referring to your issue, the "addParam" private method has been removed. You can easily set the wMode of the chart by passing the wMode: "window" parameter during creating new FusionCharts() while using the object-style parameters. So, I changed the code to : ${chartVar}.setTransparent(true);
  12. I ran it in Firefox and used Firebug to see the error: ${chartVar}.addParam("WMode", "Transparent"); The .addParam method was causing the issue. If I comment that out, it fixes the issue. Not quite sure why yet, but I'll continue to look into it.
  13. 1,2, and 4 are good, because this is an existing page and works fine when I plug the old FusionCharts.js back in. 3. I checked for errors and the only thing it says is; Line: 396 Char: 57 Error: Object doesn't support this property or method. I opened the FusionCharts.js file and I don't see anything at that location.