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 issue I can't seem to track down. I am using Flot to graph some data, super easy. I want to add the hover effect you see here: Flot Example

Unfortunately, under no circumstance can I get the 'plothover' event to fire. This is a brief snippet from the code:

$.plot($chartArea, eventData, eventOptions);

$chartArea.bind("plothover", function (event, pos, item) {
    console.log('hovering!');
});

Is there something you need to set in the options object to enable this behavior? Thanks!

share|improve this question
could you show us a workable example of your code on jsfiddle perhaps? It's much easier to spot problems that way. – Aidanc Apr 16 '12 at 21:17
You're right, but as soon as I posted this, I realized I forgot something, check out my answer... – gabaum10 Apr 16 '12 at 21:18

2 Answers

up vote 11 down vote accepted

Like an idiot, I forgot to include the grid option. Check out the object:

eventOptions = {
   points: {
        show: true
    },
    lines: {
        show: true
    },
    grid: { hoverable: true, clickable: true },
    xaxis: {
        min:earliestMessage.timestamp,
        max:currentTime,
        mode:"time",
        ticks:10
    }
};

notice the grid parameter. That's what was missing. Duh!

:)

share|improve this answer
Don't forget to delete your question. – Ahmet Can Güven Apr 16 '12 at 21:24
Can't don't have permission... – gabaum10 Apr 16 '12 at 21:28
1  
Flagged it to be taken care of... – gabaum10 Apr 16 '12 at 21:28
2  
Why delete it? In 5 seconds I had my answer to "flot plothover not working" via Google instead of spending 30 minutes figuring it out myself. – ken Apr 3 at 19:30

I'm not sure what $chartArea is in your code, but lets try something like this:

var chartArea = $("#placeholder"); // your chart div

$.plot(chartArea, eventData, eventOptions);

$(chartArea).bind("plothover", function (event, pos, item) {
    console.log('hovering!');
});
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.