我正在使用plotly创建条形图。但是我想知道如何在条形图的顶部添加数据标签?
在下面的条形图中,我想在条形图上添加单个数据标签。
我正在使用此代码生成条形图:
plot_ly(
x = as.vector(de$MO),
y = de$CNT,
text = a, hoverinfo = "text", mode="y", type = "bar",
name = "SF Zo",
color = as.character(de$MO)
)%>%
layout(title= paste("Monthly SOI Count of", clientName,"for the year",selectedYear, sep = " ") , xaxis = xQuartAxis, yaxis = yQuartAxis)
我希望现在问题看起来不错?如果需要任何其他数据,请在下面发表评论。
谢谢!
答案 0 :(得分:1)
是的,我得到了答案。这不是确切的答案,而是一个被证明至少对我有用的黑客。
<ios>
谢谢:)