johnny

Members
  • Content count

    7
  • Joined

  • Last visited

About johnny

  • Rank
    Forum Newbie
  1. Documentation Incorrect

    The above fixes the javascript trigger when flash is disabled, however now flash chart isn't working. have you tested the above code yourself?
  2. Documentation Incorrect

    hello, I'm using the documentation example on "Configuring charts to use JavaScript rendering on all browsers when required Flash Player is unavailable": <html> <head> <title>My First chart using FusionCharts - Using JavaScript</title> <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> </head> <body> <div id="chartContainer">FusionCharts will load here!</div> <script type="text/javascript"><!-- FusionCharts._fallbackJSChartsWhenNoFlash(); var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer"); // --> </script> </body> however the above code doesn't trigger javascript if flash is disabled. firebug tells me the following: FusionCharts._fallbackJSChartsWhenNoFlash is not a function flash chart is working if remove the fallback line and javascript is working if i'm forcing it to trigger with javascript, so all files are there. please help me to solve it.
  3. Column chart small bars issue

    I've tried it, but it won't run with your example, says "invalid xml". Only if I remove the html code, and put a simple text it runs. Also checked that isHtml attribute is turned on. Please advise. Thank you.
  4. I have a bar chart and using the column 2D, and the bars are clickable. Now there's sometimes small bars which are really difficult to click on. Is there a way to make the values, or the axis labels clickable?w
  5. maxBarHeight

    I'm basically want to control the max bar height in the MSBar2d, just as maxColWidth in the Column2D. So no matter how many bars i have in my chart, i want them for example always be 15px max in height. Without this limitation, the bar chart looks very different when rendering with varying amount of bars. Thanks.
  6. maxBarHeight

    That's a problem for me. Since I want to control the height of bars, not the distance between them, plotSpacePercent is no good. Do you know if and when will it be added? Thanks.
  7. maxBarHeight

    Hi. I need to set max bar height in StackedBar2D, I don't see an option for this in the manual. Is it only available in MSBar3D?