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
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