Nabajeet

Members
  • Content count

    152
  • Joined

  • Last visited

Everything posted by Nabajeet

  1. How to refresh FusionChart

    Hi, Real time data is supported only by real time charts, so you should choose some real time charts in place of bar charts. Also you should be use chartName.feedData() to feed real time data to the real time charts. Hope this helps.
  2. Tooltip in Stacked Area 2D

    Glad that your issue is resolved.
  3. How to refresh FusionChart

    Hi, refreshinterval() and setXMLURL() should be working for you because of backward compatibility of FusionCharts XT Suite. If not their might be some other problem, please elaborate on the issue faced with a scaled down sample or screenshot. Hope this helps
  4. Tooltip in Stacked Area 2D

    Hi Luis, A tooltip is displayed only when the mouse is hovered over a particular data point. So it is not possible to show the tooltext when hovering over the whole area. However in the latest version of FusionCharts XT Suite you can increase the radius of the anchor by using the anchorRadius attribute, so that the area over which the tooltext is shown is increased. Hope this helps.
  5. Tooltip in Stacked Area 2D

    Hi Luis, Please correct me if I am wrong, what you want is to show all data in a series as table in tooltip or data of all series as a tooltip? I also suggest you to use tooltext in set element rather than in category to get the desired effect. Waiting for your reply to provide any further assistance.
  6. Remove Anchor from Legend

    Hi Fabio,As of now there is no option for changing the icon of the legends, you can use annotations for designing your custom legends but that shall not be interactive. Hope this helps.
  7. Hi, Yes, you can call dispose() in the same page where the chart is rendered by using any events provided by FusionCharts or add it to your custom javascript event. Please check this demo: http://jsfiddle.net/nabajeet_fusioncharts/31nra0kz/2/ Hope this helps.
  8. Hi Clara, You can use yAxisValuesStep to achieve the same effect as labelStep in case of Y Axis values. For achieving the output you have shown in the example, you should set numDivlines according to the number of Y axis values you want to display, also do not forget to set adjustDiv to 0 before setting numDivlines. You can set explicit lower and upper limit values for Y axis using the attributes 'yAxisMinValue' and 'yAxisMaxValue' Hope this helps.
  9. Getting chart slice index

    Hi, Please refer to this post: http://forum.fusioncharts.com/topic/16096-getting-chart-slice-index/
  10. dataPlotClick isSliced always false

    Hi, Please refer to this post: http://forum.fusioncharts.com/topic/16096-getting-chart-slice-index/
  11. Hi, Please check out the fiddle for a simple demo on how to dispose chart. http://jsfiddle.net/TumnU/133/ Hope this helps.
  12. Getting chart slice index

    Hi Paul, What you can do is use both the events 'dataplotClick' and 'slicingStart/slicingEnd' to get the slice index and sliced state. http://jsfiddle.net/b533S/10/ Hope this helps.
  13. slice index in slicingStart/End

    Hi Paul, What you can do is use both the events 'dataplotClick' and 'slicingStart/slicingEnd' to get the slice index and sliced state. http://jsfiddle.net/b533S/10/ Hope this helps.
  14. Getting chart slice index

    Hi Paul, To get the index of the sliced data you can use 'dataplotClick' event in place of slicingStart (or slicingEnd). Please check out this fiddle: http://jsfiddle.net/...charts/b533S/4/ For more info on this please search dataplotClick in: http://docs.fusionch...sionCharts.html Hope this helps
  15. Getting chart slice index

    Hi Paul, To get the index of the sliced data you can use 'dataplotClick' event in place of slicingStart (or slicingEnd). Please check out this fiddle: http://jsfiddle.net/nabajeet_fusioncharts/b533S/4/ For more info on this please search dataplotClick in: http://docs.fusioncharts.com/FusionCharts.html Hope this helps
  16. Hi, Starting FusionCharts v3.4, you can achieve this using macros to embed data value and label in dynamic tooltips Macros: # $dataValue - Formatted value # $label - Label of the column # $value - Raw value of the column Use these macros in 'plottooltext' attribute You can check out: http://jsfiddle.net/fusioncharts/CB98Y/ Hope this helps.
  17. Hi, You can upgrade to the latest version of FusionCharts Suite XT, it has greater support for JavaScript charts and all your labels will be displayed in the chart properly. Please find the screenshot attached. If you would like to use older versions then try the following: <chart ...labelDisplay='NONE' rotateLabels='1'> This should solve your problem Hope this helps,