Here is what I have:
f1 <- list( family = "Arial, sans-serif", size = 25, color = "white" ) f2 <- list( family = "Old Standard TT, serif", size = 14, color = "black" ) a <- list( title = "SALES PER SONG", titlefont = f1, showgrid = FALSE, showticklabels = TRUE, showline=TRUE, tickangle = 45, tickfont = f2 ) salesplot <-plot_ly(producersales, type="scatter", x=Producer, y=SalesPerSong, color=SongRange, colors=cols, mode="markers", size=SalesPerSong) %>% layout(xaxis = a, yaxis = a)
I tried to add paper_bgcolor=#00000000, plot_bgcolor=#00000000 after the x and y axis information within layout() , but when I run the command, I get a plus sign. I do not know what to do, so any help is appreciated. Thanks!
source share