You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to migrate an existing flot graph that has handlers like
$('#graph').on('plotclick', function (event, pos, item) {
// do stuff
});
I'm going to try to add these in the componentDidUpdate hook of my component that wraps ReactFlot, but it seems like the 'correct' way to do this is to pass the handler as a prop to ReactFlot.
I'm trying to migrate an existing flot graph that has handlers like
I'm going to try to add these in the
componentDidUpdate
hook of my component that wraps ReactFlot, but it seems like the 'correct' way to do this is to pass the handler as a prop to ReactFlot.Something like:
The unused
event
parameter for draw makes it seem like maybe you initially intended to include something like this?The text was updated successfully, but these errors were encountered: