I have created a svg using ggplot2::ggsave()
. I embed the svg inline in a html file. However, I find that there is a border around the svg. How do I remove this border?
tl;dr version: download this html, how do I remove the border around the inline svg?
Here is the code I used to create the svg:
dput
of statistics_data
:
statistics_data <-
structure(list(Category = structure(c(5L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 5L, 5L, 5L, 5L, 2L, 2L, 3L, 3L, 3L, 3L,
4L, 5L, 3L, 5L, 5L, 5L, 1L, 1L, 1L), .Label = c("Online Presence",
"Social Presence", "Web Design", "Web Development", "Website Content"
), class = "factor"), Category_count = c(9L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 9L, 9L, 9L, 9L, 2L, 2L, 5L,
5L, 5L, 5L, 1L, 9L, 5L, 9L, 9L, 9L, 14L, 14L, 14L), Category_name = c("Website Content (9)",
"Online Presence (14)", "Online Presence (14)", "Online Presence (14)",
"Online Presence (14)", "Online Presence (14)", "Online Presence (14)",
"Online Presence (14)", "Online Presence (14)", "Online Presence (14)",
"Online Presence (14)", "Online Presence (14)", "Website Content (9)",
"Website Content (9)", "Website Content (9)", "Website Content (9)",
"Social Presence (2)", "Social Presence (2)", "Web Design (5)",
"Web Design (5)", "Web Design (5)", "Web Design (5)", "Web Development (1)",
"Website Content (9)", "Web Design (5)", "Website Content (9)",
"Website Content (9)", "Website Content (9)", "Online Presence (14)",
"Online Presence (14)", "Online Presence (14)")), .Names = c("Category",
"Category_count", "Category_name"), row.names = c(NA, -31L), class = "data.frame")
Create a pie chart using ggplot2
:
p <- ggplot(data = statistics_data,
aes(x = factor(1), fill = factor(Category))
) +
geom_bar(width = .2, stat = "bin") +
xlab('') +
ylab('') +
theme(axis.ticks = element_blank(),
axis.text.y = element_blank(),
panel.grid.major=element_blank(),
panel.background = element_rect(fill = 'transparent'),
plot.background = element_rect(fill = 'transparent'),
legend.background = element_rect(fill = 'transparent'),
panel.border = element_rect(colour = NA, fill = NA)) +
scale_fill_manual(values = c("Online Presence" = "#4b67b9", "Social Presence" = "#d85341", "Web Design" = "#ff8b24", "Web Development" = "#aad32e", "Website Content" = "#fec52e")
, breaks = sort(unique(statistics_data$Category))
, labels = sort(unique(statistics_data$Category_name))
) +
scale_y_continuous(breaks = NULL) +
coord_polar(theta="y") +
labs(fill = 'Ranking Factor Category', x = NULL, y = NULL)
Use ggsave
to save the pie chart:
ggsave("test_pie_chart.svg", width = 5, height = 3, dpi = 300, bg = "transparent")
Then embed the svg in a html file, which can be downloaded here.
There is a border around the svg! How do I get rid of it?
That was a challenge, Alex! Unfortunately there's no argument to pass to grDevices to control the border, so you have to set the transparency in the theme as you've tried. I've tried element_blank() for the following options and think it works:
Perhaps you could try it and confirm this works as intended?