Need a special offer?Find out if your project fits.
+
All documentation
API reference
  • API Reference for older versions
  • chartclick

    [starting from version: 2.7.17]

    Triggered once any chart element is clicked.

    Data passed to the handler

    Parameter/Type Description
    chart
    ChartDataObject
    Contains information about the clicked chart segment.

    Example

    flexmonster.on('chartclick', function(chart) {
        alert(
            "Click on chart segment with label: " +
            chart.label + ", measure: " +
            chart.measure.uniqueName +
            ", value: " +
            chart.value);
    });

    Open the example on JSFiddle.

    See also

    cellclick
    on
    off