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"}
]
},