seriesClick

Fires when chart series are clicked.

Example

function onSeriesClick(e) {
    alert("Clicked value: " + e.value);
}

Event Data

e.value Object

The data point value.

e.category Object

The data point category

e.series Object

The clicked series.

e.series.type String

The series type

e.series.name String

The series name

e.series.data Array

The series data points

e.dataItem Object

The original data item (when binding to dataSource).

e.element Object

The DOM element of the data point.

e.percentage Object

The point value represented as a percentage value. Available only for donut, pie and 100% stacked charts.

In this article