/* You must specify a path for this variable */ %let path=path-to-your-web-server; goptions reset=all dev=activex; ods html file="&path\radaractx.html" style=sketch; data state; input name $ points rebounds blocks; datalines; Thorton 19 7 5 Inge 14 5 4 Kelly 8 6 2 Wilkins 16 8 2 Grundy 20 5 1 Miller 8 3 0 Gainey 10 2 0 run; proc gradar data=state; chart name / freq =points starfill=(solid,solid,solid,solid,solid,solid) overlay= rebounds name ='radar'; run; quit; ods html close;