Информация «trace0» всегда отображается рядом с текстовым полем при наведении курсора синей линии. Как ее удалить? Почему не на оранжевой линии? Что конкретно означает trace0?
library(plotly)
fig <- plot_ly()
fig <- fig %>%
add_trace(
type = 'scatter',
mode = 'lines+markers',
x = c(1,2,3,4,5),
y = c(2.02825,1.63728,6.83839,4.8485,4.73463),
text = c("Text A", "Text B", "Text C", "Text D", "Text E"),
hovertemplate = paste('<i>Price</i>: $%{y:.2f}',
'<br><b>X</b>: %{x}<br>',
'<b>%{text}</b>'),
showlegend = FALSE
)
fig <- fig %>%
add_trace(
type = 'scatter',
mode = 'lines+markers',
x = c(1,2,3,4,5),
y = c(3.02825,2.63728,4.83839,3.8485,1.73463),
hovertemplate = 'Price: %{y:$.2f}<extra></extra>',
showlegend = FALSE
)
fig
Заранее спасибо!