I can't put the label inside the bin, only on the top :(. How could I put them inside the bins? Also, I would like to have a white chart, but the chart behind the bins are grey, how could I change it for white?
ggplot(region,
aes(x=reorder(Field_Partner_Name,-amount), y=amount, fill=Field_Partner_Name)) +
geom_bar(stat="identity")+
ggtitle("Partners that invest more money") +
labs(x="Partners",y="Amount")+
geom_text(aes(label = Field_Partner_Name, hjust=0),
position = position_dodge(width = 0.9), angle = 90) +
scale_y_continuous(expand = c(0.15, 0))+
theme(axis.text.x=element_blank(),
legend.position = "none") +
ylim(0,90000000)