Created
December 5, 2012 18:34
-
-
Save mark47/4218247 to your computer and use it in GitHub Desktop.
Highcharts - hover on container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adds subtle hover effect to Highcharts chart where it's contained within a div with class="sparkline" | |
// Default background in #fff | |
$(".sparkline").mouseenter(function(){ | |
$(this).find('rect').attr('fill','#F7F9F9'); | |
}).mouseleave(function(){ | |
$(this).find('rect').attr('fill','#fff') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment