Search the Community

Showing results for tags 'drilldown ajax linkeddata linked charts'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  1. Following is the one way to create linked chart in which we provide linked chart data in Json. { "chart": { "caption": "Top 3 Juice Flavors", "subcaption": "Last year", "xaxisName": "Flavor", "yaxisName": "Amount (In USD)", "numberPrefix": "$", "theme": "fint", "rotateValues": "0" }, "data": [ { "label": "Apple", "value": "810000", "link": "newchart-xml-apple" }, { "label": "Cranberry", "value": "620000", "link": "newchart-xml-cranberry" }, { "label": "Grapes", "value": "350000", "link": "newchart-xml-grapes" } ], "linkeddata": [ { "id": "apple", "linkedchart": {} }, { "id": "cranberry", "linkedchart": {} }, {i "id": "grapes", "linkedchart": {} } ] } I want to pull linked chart data from Ajax whenever linked item is clicked. I tried using ondataplotclick event. From there i am able to pull out chart data from Ajax but i need to rerender same chart and i am not able to get back button. What i am trying to achieve is following thing. I will provide JSON in following format and on one of the callback i will get the data from Ajax on link basis and i will display ajax data. { "chart": { "caption": "Top 3 Juice Flavors", "subcaption": "Last year", "xaxisName": "Flavor", "yaxisName": "Amount (In USD)", "numberPrefix": "$", "theme": "fint", "rotateValues": "0" }, "data": [ { "label": "Apple", "value": "810000", "link": "ChartID001", }, { "label": "Cranberry", "value": "620000", "link": "ChartID002" }, { "label": "Grapes", "value": "350000", "link": "ChartID003" } ], } Is it possible by any events?