Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

legend position right

Status
Not open for further replies.

kaeserea

Programmer
Feb 26, 2003
164
0
0
DE
Hello!

I have a question on legends. I'd like to position my legend top right outside. Unfortunately it is positioned top center outside...

Here's my code:
[tt]
goptions device=javaimg gunit=pt colors(red green yellow) ftext=arial xpixels=400 ypixels=400;
legend1 position=(top right outside) across=1 frame label=none shape=bar(3,3);

proc gchart data = work.myData;
format Datum ddmmyyp10.;
vbar Datum / sumvar = stapel
subgroup = art
type = sum sum
discrete
legend = legend1
raxis=axis1 maxis=axis2;
axis1 label=none minor=none;
axis2 label=none;
run;
[/tt]

Does anybody have an idea why the right is ignored?

I tried the same code without the goptions xpixels=400 ypixels=400. Which had no effect...

Best regards,
Eva
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top