I have a simple drilldown chart: jsfiddle
Depending on the selected values in a table I need to dynamically click on specific column in this chart. How can I do that? I found how to click on the legend area, but not on column.
I tried to simply trigger a click event on the specific column, but in this way it not works:
$('rect:not(:first):nth-child(1):first').click()
I assume sth must be hidden in the charts api, but I can't see where it is.