Home > Net >  Delete text from th bars of plotly chart
Delete text from th bars of plotly chart

Time:01-12

In the plotly bar chart below how can I keep only the hoverinfo and skip the text inside the bars?

library(plotly)

x <- c('Product A', 'Product B', 'Product C')
y <- c(20, 14, 23)
data <- data.frame(x, y)

fig <- plot_ly(
  data = as.data.frame(data),
  x = ~ x,
  y = ~ y,
  type = "bar",
  marker = list(color = 'rgb(158,202,225)',
                line = list(color = 'rgb(8,48,107)',
                            width = 1.5))
  ,
  text = paste(
    "X :",
    data$x,
    "<br> Count of Issue :",
    data$y
  ),
  hoverinfo = "text"
) 

fig

CodePudding user response:

From the enter image description here

  •  Tags:  
  • Related