i have vbar bar graph. the x-axis labels are displaying very long.How can we wrap the text.
What version of SAS are you running?
SAS 9.4 windows
Two options combined and a change to your data.
The XAXIS option FITPOLICY controls how text for tickmarks displays. The Options Fitpolicy=Split, Splitalways or SplitRotate work with the option SPLITCHAR option to indicate one or more characters to split the text.
So if your xaxis statement includes Fitpolicy=Split Splitchar='*" any label on a discrete axis will split the text where the * occurs.
The split character(s) are not displayed in the result.
Following the above if the value of the X variable is "This long label*wants to be*split"
Then the result would look something like:
This long label
wants to be
split
Actual appearance depend on which of split, splitalways and splitrotate you use. See documentation for details.
You can have more than one splitchar but the order isn't important, there is no "use the * and then the ! if you use splitchar="*!" as splitchar="!*" will behave the same.
This reason I asked the version question is that we made FITPOLICY=SPLIT the default for the X-axis in 9.4. The default SPLITCHAR is a space. So, I would have expected your axis value to split on the space, but they did not. By any chance, do you have FITPOLICY=ROTATE in your SGPLOT code?
Thanks!
Dan
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.