I have a dataset with the following variables: Group, Share1, Share2, Share3.
Group takes the value of 1 or 2, share1, share2 and share3 sum to 1 for each group.
I would like to generate a graph that looks like the following (created in excel), where the x categories are the share variables, blue is group 1, and orange is group 2.

But so far, I'm only able to generate the following in Stata:

The code I'm using:
Data example below
Any suggestions for how to get the equivalent of the excel graph?
Group takes the value of 1 or 2, share1, share2 and share3 sum to 1 for each group.
I would like to generate a graph that looks like the following (created in excel), where the x categories are the share variables, blue is group 1, and orange is group 2.
But so far, I'm only able to generate the following in Stata:
The code I'm using:
Code:
graph bar (mean) share1 share2 share3, over(group)
Code:
* Example generated by -dataex-. For more info, type help dataex clear input float(group share1 share2 share3) 1 .5 .25 .25 2 .85 .1 .04999997 end