AshokKumaresan

Members
  • Content count

    32
  • Joined

  • Last visited

Everything posted by AshokKumaresan

  1. paletteColors

    Hi, Please refer this sample for paletteColors in pie chart http://jsfiddle.net/ashokkumaresan/9cPeU/400/ Thanks
  2. HI I guess you have shared a wrong xml i created a sample out of it the output is simple multi series column chart http://jsfiddle.net/ashokkumaresan/4REJ5/224/ Try updating the fiddle with your actual xml. Thanks
  3. Waterfall Chart - dotted connector

    Hi Kindly use connectNullData and set to 1 to skip null values. Sample for the same http://jsfiddle.net/ashokkumaresan/mo48mf9s/7/ Thanks
  4. Hi Can you please replicate the issue in this sample so that we can assist you accordingly. http://jsfiddle.net/ashokkumaresan/4REJ5/215/ Thanks
  5. Hi, Sorry currently we don't have any tool to export the entire page.
  6. Body dir="rtl" with a chart makes the page too wide

    Hi We have logged the issue and we will keep you posted on any updates. Thanks
  7. How to migrate Gantt Chart flash to Java Script?

    HI, Please download our latest Version from this link http://www.fusioncharts.com/download/. Kindly find the documentation for it http://www.fusioncharts.com/dev/chart-attributes.html?chart=gantt Sample in latest Version http://jsfiddle.net/fusioncharts/fLqSL/. Thanks
  8. Label order in Radar Chart - clockwise

    Hi, Sorry we don't have any attribute to achieve it .
  9. The chart only shows the span and nothing else

    Hi, I just saw your sample in stackover flow and there is no error in your code but you have placed fusioncharts code inside getGraph() function and i guess you are not calling that function. Kindly verify whether getGraph() function is called or not. Thanks,
  10. 2d coluymn chart on web page

    Hi, The first issue is there is a spelling mistake in your html file you have mentioned as hbay_rain_irriigation.xml and remove the backward slash and the second issue is your data format mscolumn2d doesn't support that format only zoom line supports it. Please find the documentation for mscolumn2d http://www.fusioncharts.com/dev/chart-attributes.html?chart=mscolumn2d Thanks
  11. Body dir="rtl" with a chart makes the page too wide

    Hi, Yes i tried in normal html page too only change is the chart moves to right side of the screen but the page is not getting wider. Thanks
  12. Setting headers to setXMLUrl

    Hi, Please follow the link http://www.fusioncharts.com/dev/api/fusioncharts/namespaces/ajax.html#static-headers I hope this map help you Thanks,
  13. Column 2D Chart doesn't work after redraw.

    Hi, I have just converted your examples into JsFiddle Example 1: http://jsfiddle.net/ashokkumaresan/y3H2G/717/ Example 2: http://jsfiddle.net/ashokkumaresan/y3H2G/718/ I didn't get what inconsistent behavior is their in this two example. Can you be more details on your scenario?? Thanks,
  14. Body dir="rtl" with a chart makes the page too wide

    Hi I guess its the problem with JsFiddle even if you are not including the above line you will get a scroll bar in JsFiddle. Try the same code in normal html page their will be no issue in that. Thanks,
  15. Hi, Please ignore updatepanelhook.fusioncharts.js and try with this new solution attached with this post, in this we are trying to reassign the event back to any controller after post back. Hope this helps Update Panel.zip
  16. .Net View "FusionChartDataFormats" undefined

    HI, From your code i can see that there is no issue with your data format , but you are using older version of FusionCharts which uses flash to render chart . We have deprecated the support for Flash. Hence, we do not support *.swf component. Try upgrading to latest version and check once. Thanks
  17. using FusionCharts.Charts in ASP.NET PROJECT.

    Hi, This error occurs when your FusionCharts.dll file is referenced from a different path. Kindly verify whether dll file is referred from bin folder or not. Thanks
  18. Column 2D Chart doesn't work after redraw.

    Hi, Its not an issue generally pie chart cannot plot negative values but column chart can plot. If you want pie chart to display negative value kindly use displayValue attribute as suggested in previous post. Thanks
  19. milestone draw order problem on Gantt chart

    Hi, Currently the kind of requirement is not possible Thanks
  20. Primary Y Axis and Secondary Y Axis delimiters don't match.

    Hi, Kindly use sFormatNumberScale :"1" to sync Y-axis scale. Sample JsFiddle for the same http://jsfiddle.net/ashokkumaresan/rSemD/57/ Thanks
  21. Column 2D Chart doesn't work after redraw.

    Hi, Pie chart cannot plot negative values , you can use displayValue:"1,-100" to show negative value. Sample JsFiddle for the same http://jsfiddle.net/ashokkumaresan/y3H2G/678/ Hope this helps Thanks
  22. Fire alert after pie chart is rendered

    Hi, Since the chart animation is enabled this event is triggered before the animation process ,kindly set animation:"0" inside chart property. Updated JsFiddle for the same http://jsfiddle.net/ashokkumaresan/n8e8c1y6/1/ Hope this helps Thanks
  23. Hi, Kindly use topPadding: "Number" attribute inside task properties , which helps to give required padding at the top of the task bar. Hope this helps Thanks
  24. Primary Y Axis and Secondary Y Axis delimiters don't match.

    Hi, Kindly use syncAxisLimits :"1" attribute inside chart properties which will help to synchronize the limits of both primary and secondary axis. Sample Jsfiddle for the same http://jsfiddle.net/ashokkumaresan/rSemD/54/ Hope this helps Thanks
  25. Focus page to center upon loading

    Hi, Kindly use window.location.hash = '#divid'; where divid can be chart container id Sample JsFiddle for the same http://jsfiddle.net/ashokkumaresan/4B6M4/100/ Thanks