Last active
October 16, 2018 21:54
-
-
Save baptiste/7039de3a8388adc63c673135fae8b77d to your computer and use it in GitHub Desktop.
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
fun_labels <- function(x) sprintf("<b>%s</b>", x) | |
ggplot() + | |
scale_x(breaks = c('a','b','c')) + | |
theme(axis.label = element_sticker(grob = fancyGrob, dictionary = fun_labels)) | |
my_labels <- tibble(label = letters[1:3], grobs = I(lapply(1:3, fancyGrob))) | |
ggplot() + | |
scale_x(breaks = c('a','b','c'), | |
formatter = format_fancytext(type='html'), | |
dictionary = my_labels) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment