Hi, I'm coded this gauge but I have no idea how to remove that green line and it's driving me crazy, any help?
library(plotly)
fig <- plot_ly(
domain = list(x = c(0, 1), y = c(0, 1)),
value = 100,
type = "indicator",
mode = "gauge+number",
gauge = list(
axis =list(range = list(0, 100),
tickmode="array",
tickvals=c(5,10,15,48.5,100),
ticktext=c("Mármol","Platino", "Gravas","Plata", "Oro")),
bgcolor = "white",
steps = list(
list(range = c(0, 5), color = "lavender"),
list(range = c(5,10), color = "rosybrown"),
list(range = c(10,15), color = "navy"),
list(range = c(15,48.5), color = "lightslategray"),
list(range = c(48.5,100), color = "gold")),
font = list(size = 24, color = "white", family = "Tahoma")
)) %>%
layout(
margin = list(l=100,r=100),
paper_bgcolor = "white",
font = list(color = "black", family = "Tahoma"))
fig