Rajavelu

Members
  • Content count

    40
  • Joined

  • Last visited

Everything posted by Rajavelu

  1. Hi! We are using fusion charts with flash rendering still now, but now changed to javascript rendering using jquery plugin. Now we meet lot of issues on chart. some of them: 1) slantLabels is not working for line charts, but works on AreaChart(refer attached image - fc1.png), 2) Chart data displays outside of chart(refer attached image - fc.png), 3) debugMode is not working properly. Even i refer http://forum.fusionc...ing/#entry55433 and try as, <script> FusionCharts.debugMode.enabled(true); FusionCharts.debugMode.outputTo( function() { console.log(arguments); } ); $("#chart").insertFusionCharts({ dataSource: 'test.xml',height : "350",width : "410",renderer : "JavaScript",quality : "high",swfUrl:"ZoomLine.swf",dataFormat: "xmlurl", debugMode: "1" }); </script> 4) For JS rendering charts we needn't swf files, but why we have to give swfUrl as "ZoomLine.swf" 5) When show Diff type of charts in a page , we meet some errors(example:Uncaught TypeError: Cannot read property 'parent' of undefined,Invalid value for <rect> attribute x="NaN"), Even i follow as our docs, (Please give also minimum version for each type of charts) ......
  2. Dear team! I can change font style for caption/connector labels using <styles>. But cant change node/dataplot label/name font style (refer img). Also I have tried as increase "baseFontSize", but . How to increase font size?
  3. Dear team! I need to show/hide some connectors&labels, when click another dataplot. Is it possible?
  4. hi! Thanks for your reply. But "valueFontSize" is not working for me. I am using fusion charts3.2.
  5. Event Handling in DragNode Chart

    Hi sanjukta ! , Thanks for your reply. I am using flash charts only, not JS rendrering charts. Is it possible to "update the existing chart with new data in flash charts" ?
  6. Hi! We are using Fusion charts(Zoom-line chart) with vertical line, In flash rendering the vertical line is displayed correctly (ref fc1.png), but not in javascript rendering (ref fc2.png).
  7. Zoomline Chart Tooltip

    Hi! For me, in Javascript rendering, x-axis value is not showing/highlighting in tooltip. Also shows a single value only. Any idea?
  8. JS Zoomline chart - vertical line

    Hi! How to show time in tooltip in javascript rendering zoomline chart? In flash that is woking fine(see flash.png). Also in our forums, where is the option/button to start new topic?
  9. Hi In Fusion charts we have "fusion charts xt trial" at the bottom, how to remove/hide this, also in the attached image we see "switch to pin mode" icon, i need to hide or move the location(eg:left corner). how ?
  10. Fusion charts xt trial in chart

    Hi! I need to show chart values on mouse over in Zoomline chart(JS rendering), If i set showVaues as 1 , Chart is not good to seen(refer attached images). Any other idea ?
  11. Fusion charts xt trial in chart

    After set the above attributes, allowPinMode is disabled. but toolbarHAlign is not working. (I m using version 3.2.2 xt), Also tooltip sometimes not working in that same version.
  12. Javascript chart with JQueryPlugin

    Any Updates ?
  13. Download prev versions:

    Hi! I need to download previous versions of fusion charts & maps(Example v3.2 XT). Is it possible ?
  14. Javascript chart with JQueryPlugin

    Hi ! As stated before, we are using flash charts till now(using version 3.2.2) as HTML embedding, now we want to change as javascript rendering without change fusioncharts version. I have seen in doc HTML embed method does not support JavaScript (HTML5) chart fallback mechanism. So if i need to render JS charts, the only way is jquery plugin? (but i can't change my version, Is jqueryplugin working fine in 3.2.2?). What can I do ?
  15. Javascript chart with JQueryPlugin

    @ guru: Thank you once again, Also Please give minimum versions for each types(maps, wigdets, charts, powercharts) for javascript rendering(not jquery plugin, using HTML embedding) support without bugs. Is it possible to see old versions document(Eg: 3.1 , 3.2)?
  16. Javascript chart with JQueryPlugin

    Hi! In my page I need to show Maps, charts, widgets, etc. So I need to use all Js classess(namely FusionChart.js,FusionChart.HC.js,FusionMaps.js, etc ) from various folders(Maps, Charts, Widgets) . My question is what is the minimum versions for each(maps, charts, widgets) for take js classes?. Is 3.2.1 support javascript charts rendering, using jquery plugin for all types(maps,charts,widgets)?
  17. Javascript chart with JQueryPlugin

    @guru:Thank you so much for your reply. 8) yAxisMaxValue property is not working fine.(refer image fc3.png). Also I need minimum versions for each type of charts in a single page
  18. Javascript chart with JQueryPlugin

    Any updates on data alignment issue (point 1 & 2) ? Thanks in advance
  19. Javascript chart with JQueryPlugin

    6) Chart values are overlapping one on another (see attached image - fc2.png). 7) I used document.getElementById(id).getValue() instead of value;, but when include jquerymin.js for our charts, meet the error, (Uncaught TypeError: Cannot call method 'toLowerCase' of undefined)but i think this may come due to prototype.js ...
  20. JQueryPlugin Issue:

    Hi We have different jQueryPlugin for map & charts(jQueryPlugin.js & jqueryplugin.js resp), I need to show all type of fusion charts(maps, powerchart,widgets, linecharts) in a page using jqueryplugin, Please give an example zip file .
  21. JQueryPlugin Issue:

    @Guru: Thanks How to enable debugMode through jqueryplugin for a javascript chart. i found in docs debugMode='1', but not working. Also i tried as <script> FusionCharts.debugMode.enabled(true); $('#chart').insertFusionCharts({ dataSource: 'test.xml',height : '100%',width : '90%',renderer : 'JavaScript',quality : 'high',swfUrl:'/FusionCharts/ZoomLine.swf',dataFormat: 'xmlurl', debugMode: '1' }); </script> but not working
  22. Fusioncharts with ajax:

    Fusioncharts with ajax: I have generate the following code(bold) in java, and this code will set as innerhtml for a div / td / ... tags, by using ajax, but the chart is not rendering. My sample code: <script> function test(){ var details="<span id='chart'></span><script>$('#chart').insertFusionCharts({ dataSource: 'test.xml',height : '100%',width : '90%',renderer : 'JavaScript',quality : 'high',swfUrl:'ZoomLine.swf',dataFormat: 'xmlurl', debugMode: '1' }); </script>"; document.getElementById("chart_td").innerHtml=details; } <script> <table><tr><td id="chart_id"></td></tr></table>
  23. Hi ! Debug mode in jqueryplugin is not working for charts&maps to me. My code : <span id="map"></span> <script> $("#map").insertFusionCharts({ dataSource: 'test1.xml', height : "100%", width : "100%", renderer : "JavaScript", quality : "high", type:"WorldwithCountries", dataFormat: "xmlurl", debugMode: "1" }); </script>
  24. JQueryPlugin Issue:

    Thanks for your reply. But still I have meet an issue by using Fusioncharts with ajax: I have generate the following code(bold) in java, and this code will set as innerhtml for a div / td / ... tags, by using ajax, but the chart is not rendering. My sample code: <script> function test(){ var details="<span id='chart'></span><script>$('#chart').insertFusionCharts({ dataSource: 'test.xml',height : '100%',width : '90%',renderer : 'JavaScript',quality : 'high',swfUrl:'/FusionCharts/ZoomLine.swf',dataFormat: 'xmlurl', debugMode: '1' }); </script>"; document.getElementById("chart_td").innerHtml=details; } <script> <table><tr><td id="chart_id"></td></tr></table>
  25. DebugMode in jqueryplugin is not working?

    Thanks, but how this javascript charts using jqueryplugin will be debug ?