Created
August 20, 2013 14:42
-
-
Save wbashir/6282296 to your computer and use it in GitHub Desktop.
Flot.pie - Tooltip on pie chart - https://github.com/krzysu/flot.tooltip/issues/26#issuecomment-22946188
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
$(document).on("mouseenter", ".plot .label", | |
function (event) { | |
$(this).animate({ opacity: 0 }, | |
function () { | |
$(this).addClass('hidden-label'); | |
} | |
).delay(5000).animate({ opacity: 0.85 }, | |
function () { | |
$(this).removeClass('hidden-label'); | |
} | |
) | |
} | |
); | |
.hidden-label { | |
display: none; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment