Please refer to the above image (i.e. the legend).
In proc gplot I have this:
proc gplot data=mydata;
plot y*x=id / legend=legend1;
run;
So in the output graph I have my plot and my legend below it. I want the red and blue bars to go right next to x and y, like this:
Basically how do I go from the first image to the second? I'm thinking left-aligning the group values but I'm not sure how to do that in the legend.