如何在 R Plotly 饼图中将标题居中?

How do you center the title in a R Plotly pie chart?

我正在使用 R 与 Plotly 合作,但无法将标题置于饼图的中心。标题看起来有点偏右。有没有办法做到这一点并将其向左或靠近饼图的中间移动?

这是代码:

label_names = c('Feeds','All Others') 
numbers = c(first_reported, not_first_reported)

pie_colors <- c('rgba(173,216,230,1)', 'rgba(0,0,139,1)')
plot_ly(labels=label_names, values=numbers, type='pie', 
        insidetextfont = list(color = '#FFFFFF'),
        marker = list(colors=pie_colors)) %>%
  layout(title = 'Portion of Feeds')

图表的样子:

看起来与这个问题相似,, 只需稍微修改此处的 ,应该也适用。

plot_ly(labels=label_names, values=numbers, type='pie', 
        insidetextfont = list(color = '#FFFFFF'),
        marker = list(colors=pie_colors)) %>%
  add_annotations(
    y=1.05, 
    x=0.5, 
    text="Portion of Feeds", 
    showarrow=F,
    font=list(size=15)
  )

来源: