🔒 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 07-24-2017 07:06 AM
(792 views)
I'm able to generate the below chart using the following code. However, I want to bold all the values (e.g. all the numbers in the chart, Date_Week,ticket_count) in the chart. Appreciate if someone of you help me.
ods rtf body='/sasuser/Date_Weekly_Reporting.rtf' rs=none style=RTFBLUE;
proc sgplot data=chart;
title 'count of Tickets by Date_Week';
vbar Date_Week / response=Ticket_Count datalabel=Ticket_Count group=Resolved_by groupdisplay=cluster;
label Resolved_by='L2/L3';
run;
ods rtf close;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Add
datalabelattrs=(Weight=Bold)
to your vbar options (after the / ).
You can see what else you can control with this option in the documentation below
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Add
datalabelattrs=(Weight=Bold)
to your vbar options (after the / ).
You can see what else you can control with this option in the documentation below