R の ggplot に基づいて Plotly プロットを作成しています。ホバー ボックスのテキストのサイズを大きくしたいと考えています。次のような散布図があるとします。
library(plotly)
library(ggplot2)
d <- data.frame(a = sample(1:50, 30, T),
b = sample(1:50, 30, T),
col = factor(sample(1:3, 30, T)))
gg <- ggplot() + geom_point(aes(x = a, y = b, color = col), data = d)
p <– plotly_build(gg)
p
ホバーテキストのサイズを変更する方法はありますか?