I'm pretty new to using SAS for creating graphs and charts. I copied some programming from a SAS program I found online and it did help create a graph that I like, but the names overlap. I was wondering if there was a way to create something that wouldn't overlap? I have provided the code and attached the chart. proc boxplot data=Work.FruitOutliers; plot ErrorPer*DateofReport / boxstyle=schematicid nohlabel; id Outliers; label ErrorPer = 'Errors'; run; goptions reset=symbol;
... View more