jvl

Members
  • Content count

    25
  • Joined

  • Last visited

  • Days Won

    1

About jvl

  • Rank
    Forum Member

Profile Information

  • Gender
    Not Telling
  1. Interactive Legend

    Finally it works! Thanks!
  2. For me with firefox 42.0 (the latest one currently) the chart goes to the right side and I get a scrollbar although there is nothing that would require that scrollbar. I also tried this on another computer and same thing happens. <html> <head> <script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script> <script src="http://static.fusioncharts.com/code/latest/fusioncharts.js" type="text/javascript"></script> <script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js" type="text/javascript"></script> <script type="text/javascript"> FusionCharts.ready(function () { var salesChart = new FusionCharts({ type: 'area2d', renderAt: 'chart-container', width: '400', height: '300', dataFormat: 'json', dataSource: { "chart": { }, "data": [ { "label": "Value", "value": "4" } ] } }) .render(); }); </script> </head> <body dir="rtl"> <div id="chart-container">FusionCharts will render here</div> </body> </html> The thing that makes the scrollbar go away is this style <style> .fusioncharts-smartlabel-container{ left: 0px !important; } </style>
  3. I ran into this bug in normal use. I am not talking about just having a scroll bar, I am talking about the page being something like 160 000 pixels wide (yes 160k px). Did you try it in a normal html page with dir="rtl" in the body?
  4. Hi, Add this line document.getElementsByTagName('body')[0].setAttribute("dir", "rtl"); to your fiddle here: http://jsfiddle.net/fusioncharts/x5FBh/ and you will get a huge scrollbar on the frame. It is caused by this element ".fusioncharts-smartlabel-container" and specifically this rule "left: -9999em".
  5. Interactive Legend

    No comment?
  6. Interactive Legend

    The perfect 5th year birthday present for this issue would be to fix it. What do you say? (It is present in 3.8.0)
  7. Interactive Legend

    Closing in on 4 years with interactive legend making no sense what so ever for these charts. How is that wishlisth item progressing?
  8. Interactive Legend

    Hello again, As it has been almost a year of silence on this issue again, I thought I would bump and ask if there is any progress on this or anything at all? I saw this was also suggested in another thread aswell: http://forum.fusioncharts.com/topic/8415-interactive-legend-leaves-ophans-on-chart/ and that is two years ago when you were trying to get it into the next release. It is a shame that such a small issue degrades otherwise brilliant feature. I do have the enterprise license so maybe I should dig into the source code myself one of these years
  9. Everything Works Great Except Ie8 Rendering.

    Any updates on this issue? I've got reports from users on this same matter just like described here: http://forum.fusioncharts.com/topic/10332-fusion-charts-not-rendering-in-ie-8
  10. Scatter Chart Yaxismaxvalue Issue

    How about PowerCharts and FusionMaps? And is there a planned release for any of the ones that have not yet been released with HTML5?
  11. Scatter Chart Yaxismaxvalue Issue

    I have the enterprise license for all the products. Is the update backwards compatible with previous XML and widgets etc? I downloaded the package from PUC and seems like this scatter issue is fixed. There is one problem with the PUC itself when I tried to download the update it had "FusionCharts_EnterpriseEx.zip%A0" in the URL, I removed the %A0 and it worked, but I thought you might want to know that.
  12. Scatter Chart Yaxismaxvalue Issue

    Here is an XML with one value changed to non-zero: <chart yAxisMaxValue='3' yAxisMinValue='-3'> <dataset seriesName='data1'> <set x='1' y='1' /> </dataset> <dataset seriesName='data2'> <set x='2' y='0' /> </dataset> <dataset seriesName='data3'> <set x='3' y='0' /> </dataset> <dataset seriesName='data4'> <set x='4' y='0' /> </dataset> </chart> And I attached the correctly rendered result.
  13. Hello, I found that when the y values are all 0, the yAxisMaxValue has no effect on the chart and it is always rendered with 100. Changing any of the y values to non-zero will render the chart properly. Here is the XML I used: <chart yAxisMaxValue='3' yAxisMinValue='-3'> <dataset seriesName='data1'> <set x='1' y='0' /> </dataset> <dataset seriesName='data2'> <set x='2' y='0' /> </dataset> <dataset seriesName='data3'> <set x='3' y='0' /> </dataset> <dataset seriesName='data4'> <set x='4' y='0' /> </dataset> </chart> And the attached image is what is rendered. Any idea how to fix this?
  14. Interactive Legend

    Since you don't reply, I will assume that no improvement is coming.
  15. Interactive Legend

    Following up on this old issue that I still have with the legend. I found you had answered something I was going to ask about already here: http://forum.fusioncharts.com/topic/7636-chart-has-no-javascript-fallback/ and based on that It seems you know what is going to be in v3.2.2. I would like to ask now if any of this related to the interactive legend is being improved for that release? I still think that the feature degrades the stacked bar charts instead of improving them.