Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Hi Patrick, Apologies for the delay in response. I'm unable to replicate the issue. Can you please check out the fiddle at:http://jsfiddle.net/nabajeet_fusioncharts/ruyb0s2u/1/? We are unable to replicate the Matrix svg of the Legend to have NaN. Please find screenshot attached.
  2. format tooltips in ZoomLine chart

    Hi, No, it is not possible to format tooltips currently for zoomLine chart. We have added the feature to our wishlist.
  3. startingAngle

    Hi Paul, Thanks for sharing your feedback. We would keep a note of it.
  4. Pareto valuePosition not working

    Hey, Apologies for the delayed response. This has been identified as a bug and we would be fixing in our future releases.
  5. Hi, You can try using normal rendering methods to render FusionCharts using our earlier version. You can read more at: http://docs.fusioncharts.com/charts/contents/JavaScript/JS_CreateChart.html Hope this helps.
  6. Hey, http://www.fusioncharts.com/downloads/licensed/archived/3_3_1sr3/FusionCharts_XT_Evaluation.zip Hope this helps.
  7. jquery plugin for 3.4?

    We will keep you posted about the fix.
  8. Hey, The latest version does not contain any files related to any server side component. You can use the files from our earlier download. The implementation will be the same. FusionCharts.php
  9. jquery plugin for 3.4?

    Hi Karen, Our next upcoming release will address this issue. We have fixed the issue internally. Hope this helps.
  10. Getting chart slice index

    Hi Paul, "dataplotClick" event retrieves the values from the data source available while chart is being rendered. Try this http://jsfiddle.net/b533S/8/ one of the element is being enabled with isSliced property.
  11. Disabling hiding of series functionality

    Hi, Glad to know your issue has been resolved.
  12. Linked Chart Client Side Exporting:

    Hi, Try this: // Chart property $xml_output .= '<chart showBorder="0" caption="Yearly Sales" xAxisName="Year" yAxisName="Sales" exportEnabled="1" exportAtClient="1" exportHandler="fcExporter">'; $i=2004; while($a1=mysql_fetch_array($temp_count_data3)){ for($x2 = 0 ; $x2 < mysql_num_rows($temp_count_data2) ; $x2++) { $row2 = mysql_fetch_assoc($temp_count_data2); $qty=(integer)($row2['qty']); $xml_output .= "<set label='".$row2['ktext']."' value='".$row2['qty']."' link='newchart-xml-$i'/>\n"; $xml_output .="<linkeddata id='$i'>"; $xml_output .="<chart exportEnabled="1" > <set label='".$row2['ktext']."' value='".$row2['qty']."' link='newchart-xml-$i'/>\n </chart> </linkeddata>"; $i++; } } $xml_output .= "</chart>\n";
  13. stroke-dasharray="undefined" in chart SVG string

    Hi, Can you please confirm the version of FusionCharts used? The issue related to stroke-dasharray as undefined has been handled internally. Please try using the latest version and let us know your feedback. For Evaluation version : http://www.fusioncharts.com/download/
  14. Linked Chart Client Side Exporting:

    Hi, Please find the XML attached where "exportEnabled" attribute has been enabled in parent and descendant chart? <chart caption="Yearly sales" xAxisName="Year" yAxisName="Sales" exportEnabled='1'> <set label="2004" value="37800" link="newchart-xml-2004-quarterly" /> <set label="2005" value="21900" link="newchart-xml-2005-quarterly" /> <linkeddata id="2004-quarterly"> <chart caption="Quarterly Sales Summary" subcaption="For the year 2004" xAxisName="Quarter" yAxisName="Sales" exportEnabled='1'> <set label="Q1" value="11700" /> <set label="Q2" value="8600" /> <set label="Q3" value="6900" /> <set label="Q4" value="10600" /> </chart> </linkeddata> <linkeddata id="2005-quarterly"> <chart caption="Quarterly Sales Summary" subcaption="For the year 2005" xAxisName="Quarter" yAxisName="Sales" exportEnabled='1'> <set label="Q1" value="5500" /> <set label="Q2" value="7100" /> <set label="Q3" value="3900" /> <set label="Q4" value="5400" /> </chart> </linkeddata> </chart> If issue is still unresolved, please share a scaled down sample to look into the issue.
  15. Hi, Can you drop a mail to "[email protected]" by quoting the forum post?
  16. Linked Chart Client Side Exporting:

    Hi, Can you let us know if the issue is still unresolved?
  17. Hey, Welcome to FusionCharts Forum Post. The base tag seems to altering the native methods of JS primitives like Objects and Functions. This is the reason behind the issue. Also, usage of base tag along with most of the JavaScript libraries [not only FusionCharts library] can result in various compatibility issues. Hope this helps.
  18. Hey, Using "getDataAsCSV()", returns data as comma-separated value representation that has been provided to the chart. The exported data does not contain any functional or cosmetic attribute that was set on the chart. So, "toolText" attribute value will not be exported while using the API. Hope this helps.
  19. Linked Chart Client Side Exporting:

    Hi Juhas, Can you try setting "exportEnabled" attribute as 1 in the descendant chart data?
  20. Very Large Box and Whisker Datasets

    Hey, This feature is supported in our latest version[FusionCharts XT v3.4]. As mentioned earlier, we will update the docs soon. Sample in the following JSFiddle link: http://jsfiddle.net/swarnam/vLzadr81/1/ Hope this helps.
  21. Hi, You are seem to be using earlier version of FusionCharts. Please try upgrading to the latest version. This issue does not seem to be exist. Check the following demo gallery link: http://www.fusioncharts.com/explore/zoomline_1/ Download Trial version at: http://www.fusioncharts.com/download/
  22. Label problem with pie charts

    Hi Sebastian, Welcome to FusionCharts Forum Post. Yes, I'm able to replicate the issue. We are looking into it.