I am trying to create a scheduled chart in SAS EG 7.1 showing how are units are scheduled for different Phases over a 5 year period. I have use the below code to get the first phase documented but what I want to show is all 4 phases presented on one line which each phase will be presented by a different color. Here is the code I used so far: Proc sgplot data=WORK.'Chart Schedule Test'n; title 'Wing Calander'; highlow y=UNIT low=START1 HIGH=END1 / type=bar group=PHASE1 groupdisplay=cluster barwidth=0.5 fillattrs=(color=bib) name='a'; yaxis reverse display=(nolabel) grid; xaxis display=(nolabel) min='01oct2022'd max='30sep2026'd grid; keylegend 'a' / location=inside position=topright across=1; run; What I want to do is add additional lines after the blue bars on the same line that will show additional phases they will be in. Similar to a Gantt chart but on the same line. Also, is there a way to show all months in the below axis. Thank you! This was the output:
... View more