Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Need New Fusioncharts

    Hi Santosh, Yes, we have completely migrated from HighCharts to Raphaël Please refer to our Blog Post for more information at: http://blog.fusioncharts.com/2013/02/embracing-raphael-rearview-mirror/ To download the latest version[FusionCharts Suite XT -3.3.1 SR1]of FusionCharts at http://www.fusioncharts.com/download/trials/ To render a JavaScript chart, you will have to include FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js.
  2. Create Image Chart Server-Side Only

    Hey Jack, Welcome to FusionCharts Forum Post. No, we do not have any Java API to export the chart without rendering in the browser.
  3. Hey, Regarding Licensed version upgrade/download, please drop a mail to "[email protected]".
  4. Drawingpad.swf Download?

    Hi Surya, DrawingPad.swf is packaged under FusionWidgets. The SWF file can be located at Download package(FusionWidgets) >> Charts >> DrawingPad.swf
  5. Hi John, Can you please drop a mail to "[email protected]" mentioning Order ID/Map Name? As a suggestion, please try clearing the browser cache and check once if your issue resolves.
  6. How Many Data Can I Add In One Line Chart?

    Hey, Please drop a mail to "[email protected]".
  7. No Data To Display With Multiple Charts

    Hi, Glad to know you have resolved the issue.
  8. Regarding Stacking Charts(Line, Column, Area...)

    Hey Prabhu, Welcome to FusionCharts Forum Post. Yes, stacks float while clicking the legend and chart will not been redrawn to hide the gap currently. However, it has been already added to our wishlist. We would update you once the feature has been implemented. Hope this helps.
  9. Offset Angle Of Shading

    Hey, The latest version consist of lot of bug fixes and improvement. Please find the attached screenshot using the latest FusionWidgets. Please refer for "Version History" at: http://docs.fusioncharts.com/widgets/Contents/Introduction/WhatsNew.html Hope this helps.
  10. Hey, I'm unable to replicate the issue. Bar 2D chart is displayed with rounded edges. Please find the attached screenshot for your reference.
  11. Hey, JavaScript charts does not accepts color attribute at set element level.To obtain a similar chart, you will have to pass "plotFillColor" attribute in the chart element. Ref. Code: <chart .... plotFillColor='008000"> Please Note: Please use <chart> element instead of <graph> element.
  12. Fusion Chart Combi Is Not Working

    Hi, Can you please share the XML for further testing?
  13. Fusion Chart Support Like Font As Graph?

    Hi, Yes, it is possibe using Drawing Pad from FusionWidgets. Drawing pad can be treated like any other chart, just that it draws only annotations and no charts. Like all other charts in the suite, it accepts XML data and can be integrated with JavaScript. You can create any type of annotation on the pad and then apply Styles as per you requirement. Please refer for more information at: http://docs.fusioncharts.com/widgets/Contents/DrawingPad/Overview.html Hope this helps.
  14. Hey, Try setting "enableSmartLabels" attribute to 0 in the chart element.
  15. Hi, Can you please send us the screenshot of your requirement along with the XML/JSON being used? Also, please let us know the type of browser used for rendering the chart.
  16. Chart Debug In Javascript

    Hi, For Pyramid/Funnel, default animation is the same for Flash and JavaScript variant. The initial slicing animation does not appear while rendering a JavaScript variant. To visualize the slicing effect, please try removing "slicingDistance" attribute from the XML code.
  17. Hey, Welcome to FusionCharts Forum Post. Can you please share a scaled down sample code to replicate the issue?
  18. Chart Debug In Javascript

    Hey, Yes, the debug mode(Window) is supported only by Flash charts. To debug a JavaScript chart, use the FusionCharts JS Library’s internal debugMode to watch chart’s activities. Please refer more at: http://docs.fusioncharts.com/charts/contents/Debug/JS.html Regarding animation issue, can you please confirm the chart type? Hope this helps.
  19. Tasks Order

  20. Hey, Can you please use the Product Upgrade Link obtained at the time of purchase? If you are still unable to download the latest version, please drop a mail at "[email protected]"
  21. Hey John, Can you please confirm the version of FusionCharts used?
  22. Hi Sumit, If you need your marker to be linked to other pages, you will have to define the "link" attribute under <application> element of <marker> element. Also, if you would like the connector to link to other pages, you will have to define the "link" attribute in the connector element. Ref. Code: <markers> <definition> <marker id='HO' x='140.09' y='165.19' label='Head Office' /> <marker id='PF' x='533.37' y='182.25' label='Production Center' /> </definition> <application> <marker id='HO' shapeId='circle' link='http://www.fusioncharts.com' /> <marker id='PF' shapeId='arc' /> </application> <connectors> <connector from='HO' to='PF' dashed='1' color='00577F' alpha='40' link='http://www.fusioncharts.com'/> </connectors> </markers> Hope this helps.
  23. Hey Dinesh, Can you try adding an empty category and set element as the first element? Ref. Code: <chart compactDataMode='1' dataSeparator='|'> <categories>|Label 1|Label 2...............</categories> <dataset seriesName='Series 1'>|182|236|.......</dataset> <dataset seriesName='Series 2'>|184|170|450.........</dataset> </chart> Hope this helps.