Is it possible to implement the following style of graph in Python?
I specifically require being able to hover (or click) on a data point and the whole line is then highlighted while the others are made dull.
Is it possible to implement the following style of graph in Python?
I specifically require being able to hover (or click) on a data point and the whole line is then highlighted while the others are made dull.
Yes! Matplotlib is probably your best bet, although there are also a lot of newer libraries such as Bokeh with similar functionalities.
See this question for more detail on how to use Matplotlib and this one, for a better hover implementation.
Here's a great walk-through of a variety of options for making this sort of graph: http://nbviewer.ipython.org/gist/msund/11349097