I have this dataset 'Sales':
Date <- c("2010-01-28", "2010-01-28", "2010-01-28", "2010-01-28",
"2010-02-28","2010-02-28", "2010-02-28", "2010-02-28")
Type <- c("A", "B", "C", "D", "A", "B", "C", "D")
Dollars <- c(1787, 800, 500, 300, 1950, 1100, 890, 450)
Sales <- data.frame(Date, Type, Dollars)
So, I have four types of products (A, B, C, D) which the sales are released monthly. I would like a time series of this: the months in the X-Axis and, for each month (or quarter, whatever), a stacked bar plot representing the Dollar columns (Y-axis). My skills with ggplot2 are not that good, so I appreciate it if someone can help.
An example of what I want:
Ps: to be clear, each bar shows the proportion of each type.