🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 03-22-2018 12:24 PM
(6606 views)
Hello,
I'm trying to increase the space between groups/clusters on a graph made with vbar:
proc sgplot data= temp.figure4 noborder nowall pad=(left= 5pct right= 5pct); vbar region/response= change group= time groupdisplay= cluster baselineattrs=(thickness=0) datalabel datalabelattrs= (family= albany weight=bold) barwidth= 1.0; xaxis display= (nolabel) fitpolicy= splitalways values= ('value1' ' ' 'value2' 'value3' 'value4' 'value5' 'value6' 'value7' 'value8' 'value9') valueattrs= (family= albany weight=bold size= 8pt); yaxis label= 'label' values= (0.00 to 0.10 by 0.02) valuesformat= PERCENTN10.1 valueattrs= (family= albany weight=bold size= 8pt) labelattrs= (family= albany weight= bold size=10pt); run;
I'm using 'barwidth= 1.0;' making it 0.9 creates a nice space between clusters but also creates space within a cluster - I need the bars within a cluster to be touching.
Would appreciate any tips.
Thank you!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use CLUSTERWIDTH to change your width between clusters, and BARWIDTH to change the bar widths within the clusters.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use CLUSTERWIDTH to change your width between clusters, and BARWIDTH to change the bar widths within the clusters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks very much!! Googled but somehow that option never turned up.