BookmarkSubscribeRSS Feed
Tammy_Sutherland
Calcite | Level 5

I want to replace the labels created by the slice= & percent= options of proc gchart.  I tried to annotate, but I am struggling.  Can anyone provide some examples please.   The chart is pretty simple and basic.

proc gchart data =chart1;

  pie product_type / sumvar=trend_units type=sum nolegend slice=arrow percent=arrow value=none other=2 otherlabel="Other" coutline=black othercolor=red

                     annotate=anno

                     midpoints="Notebook" "Tablet" "Desktop" "AIO" "Monitor" "Dock" "Accessory" "Networking";

run;

quit;

1 REPLY 1
AncaTilea
Pyrite | Level 9

Hi,

What would you replace the labels with?

And what is your annotate code?

Here is an example of how to annotate stuff:

proc freq data = sashelp.class;

    tables sex/out = freq;

run;

data anno;

length text $14.;

set freq;/*(rename=(parameter=midpoint));*/;

retain xsys ysys "2" hsys "3" when "a" size;

    function = "label"; style = '"Times New Roman/bold"' ;

    position = "b"; size = 3.2 ;

    if sex = "F" then do;

        text = compress(put(percent, 4.2)||"%"); y = 60;x = 70;color = "green";

    end;

    if sex = "M" then do;

        text = compress(put(percent, 4.2)||"%"); y = 40;x = 40;color = "red";

    end;

output;

run;

proc gchart data = sashelp.class;

  pie sex / anno = anno sumvar=weight ;

run;

quit;


Also,

here is a link to examples of pie charts:

Support.sas.com

Added some code and a link Message was edited by: Anca tilea

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 1479 views
  • 0 likes
  • 2 in conversation