Отображение значения с% на диаграмме последовательной воронки - PullRequest
0 голосов
/ 06 мая 2020

Есть ли способ показать символ «%» после числа «value» в этой диаграмме последовательности?

fig <- plot_ly() 
fig <- fig %>%
add_trace(
type = "funnel",
y = c("Website visit", "Downloads", "Potential customers", "Requested price", "invoice sent"),
x = c(39, 27.4, 20.6, 11, 2)) 
fig <- fig %>% layout(yaxis = list(categoryarray = c("Website visit", "Downloads", "Potential customers", "Requested price", "invoice sent")))

enter image description here

...