Using a slightly altered version of the code in the pie chart example, I get axes appearing behind the pie chart. How can I get rid of these?
Code:
ds <- data.frame(labels = c(“A”, “B”, “C”),
values = c(10, 40, 60))
plot_ly(ds, labels = ~labels, values = ~values, type = “pie”) %>%
layout(title = “Basic Pie Chart using Plotly”)