I am trying to using PROC SGPLOT to draw a bar graph. Groups are differentiate by color. Below is the code I wrote:
proc sgplot data=comb(where=(PFS_weeks ne .));
yaxis discreteorder=data;
hbar Pt_Info / response=PFS_weeks group=Diagnosis;
The code works fine. However, I have 18 groups but there are only 12 the default group color. So the colors for my group will cycle to the #1 default color from group 13.
My question is, is there a way to increase the number of default group color so that all my groups can have different color?