Ability to select/ deselect axis items
Currently I am able to show and hide series of data in a chart by clicking the item in the legend.
I want to be able to do this also for items that are on the axis of a chart.
In my example: http://jsfiddle.net/xqzdR/
I want to be able to click for instance 'Trail 234'. This should then hide or rebuild the entire chart without this item in the axis.
-
You can do this programmatically by adding a click event to the xAxis label. See the example under http://api.highcharts.com/highcharts#xAxis.labels.formatter for a proof of concept.
This click handler then needs to remove each data point and set new categories.