Procedure Features: |
PIE
statement options:
|
DETAIL= |
|
DETAIL_PERCENT= |
|
DETAIL_SLICE= |
|
DETAIL_THRESHOLD= |
|
DETAIL_VALUE= |
|
LEGEND | |
|
Other features: |
GOPTIONS statement option:
|
|
Sample library
member: |
GCHDTPIE
|
This
example produces a normal pie chart with a detail
pie overlay. The pie chart shows the percentage of vehicle types produced
worldwide. The detail pie overlay shows the percentage of DRIVETRAINS for
each vehicle TYPE.
|
goptions reset=all border; |
|
title "Types of Vehicles Produced Worldwide (Details)";
footnote1 j=r "GCHDTPIE"; |
|
proc gchart data=sashelp.cars;
pie type / detail=drivetrain
detail_percent=best
detail_value=none
detail_slice=best
detail_threshold=2
legend
;
run;
quit; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.