I create a chart with PROC GCHART
. Assume the data looks like this:
Month Volume
Jan 2
Feb 4
May 19
Sep 7
When I create the graph with GCHART using Month and Volume, I get four bars. I would like to see the entire year though (with empty columns for the remaining months). I tried using :
axis order=('Jan','Feb',...,'Nov','Dec');
but still, I only get four columns instead of twelve. What can I do?
Thanks.