JavaScript Chart seriesVisibilityChange event

This event is raised, when a series is hidden or shown, by clicking on the series item in the legend.
A single argument is passed to the function. Given that this single argument is called "args"
in the handler, like this:

events: {
    seriesVisibilityChange: function(args) {
        // handle event
    }
}

Gives access to the following properties:
args.dataSeries.id
args.dataSeries.collectionAlias
args.dataSeries.color
args.dataSeries.axisX
args.dataSeries.axisX.min
args.dataSeries.axisX.max
args.dataSeries.axisX.type
args.dataSeries.axisY
args.dataSeries.axisY.min
args.dataSeries.axisY.max
args.dataSeries.axisY.type
args.dataSeries.points