Search the Community

Showing results for tags 'stackedarea2d'.



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. Clickable stackedarea2d

    I have a stackedarea2d chart where i want each series to be clickable, so i tried adding a "link" attribute to each "dataset". That did not work. Placing the "link" inside each "data" element (in each "dataset") creates a tiny clickable point that are not really useable in an area chart - users expect to click on the horizontal areas, not a little spec on the border between two areas ... Is there any way to make a series clickable? code example, json format: "dataset": [ { "seriesname": "My series 1", "link": "JavaScript:testFunction('this is where i want the clik - but it doesn't work');", "data": [ {"value": "130000", "link": "JavaScript:testFunction('this works - kinda');"}, {"value": "120000"}, {"value": "180000"} ] },