how to show the count and total for each bar seperatedly
ggplot(dealflow_summary_fiscal_yr,aes(x=Total,y=Type,fill=status))+
geom_bar(stat='identity',width=0.2)+theme_classic()+
geom_text(aes(label = stat(x),group = Type),stat = "summary",fun = sum,vjust = .20,hjust= 1)+
theme(axis.line.y = element_blank(),axis.ticks = element_blank(),legend.position = "bottom",
axis.text.x = element_text(face = "bold", color = "black", size = 10, angle = 45, hjust = 1))+
labs(x="", y="", fill="")+
scale_fill_manual(values=c("#284a8d", "#00B5CE"))