Can I customize tooltip in Plots using Plotly backend?

Hi,

Is there any way to customize the tooltip message in Plots using Plotly backend? For instance, I have the example below.

using Plots
plotly(ticks=:native) 
my_plot = plot([1, 2, 4], [3, 4, 10], title="Meu gráfico")

# customize_tooltip(my_plot, [1, 2, 4], [3, 4, 10], ["A", "B", "C"])
display(my_plot)

Instead of displaying the position, I’d like it to show “A,” “B,” and “C”.