Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an area Highchart chart. Added a click event to the chart, like this:

plotOptions: {
                area: {
                    marker: {
                        enabled: false
                    },
                    cursor: 'Pointer',
                    stacking: 'normal',
                    events: {
                        click: function(event) {
                          alert("hi there");
                        }
                    }                   
                }
            }

It works fine. The problem is that you can only click very near to a line, but not on the area below the line, it is not clickable.

Is there a setting that I overlooked?

share|improve this question

5 Answers

up vote 4 down vote accepted

According to the highcharts documentation, the click event only covers clicking on the series itself, so it will not register click events for clicking beneath the line.

To do what you want, you may need to handle things on your own by using the mouseOver event. Unforutnately, this event fires when the mouse hovers over the graph, which would mean you'd need to figure out where the mouse is on the graph and so forth.

Alternatively, you could modify the highcharts source code to suit your needs, or extend it, but in any case, I do not believe that this can be done easily.

share|improve this answer
2  
See my newly posted answer below; this event has been supported in Highcharts since 1.2.0 (2010-02-23). – JD Smith Aug 2 '12 at 21:17

Actually, you can do exactly what you want out of the box. The chosen answer was only looking at events for the PlotOptions object; you need to look at events for the Chart object.

Documentation and example at: http://www.highcharts.com/ref/#chart-events--click

When you click on the background, it fires the event.

chart: {
        renderTo: 'container',
        events: {
            click: function(event) {
                alert ('x: '+ event.xAxis[0].value +', y: '+
                      event.yAxis[0].value);
            }
        }        
    },
share|improve this answer

You can use the click chart event when clicking on the plot background, like so:

$(function () {
    // create the chart
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            events: {
                click: function(event) {
                    alert ('x: '+ event.xAxis[0].value +', y: '+
                          event.yAxis[0].value);
                }
            }        
        },
        xAxis: {
        },

        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
        }]
    });
});​

Here's the link to the documentation:

http://www.highcharts.com/ref/#chart-events--click

Hope that helps.

share|improve this answer
This was helpful, thank you. – ClintNash Aug 2 '12 at 22:15
no worries @ClintNash – mark_nsx Aug 2 '12 at 23:56

You can use this trackByArea: true area function in plotOptions

ex:

plotOptions: { area: { **trackByArea: true**, marker: { enabled: false },..
share|improve this answer

I have not done this with highcharts, but other graphing libraries usually make it possible to find the nearest series given a set of coordinates (from a click event). Given that, you could easily manually fire a click event on one of your data series.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.