| Date: | Wed, 25 Feb 2009 10:39:33 +0100 |
| Reply-To: | Andre Wielki <wielki@INED.FR> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Andre Wielki <wielki@INED.FR> |
| Subject: | Re: Regarding SAS Graphs & Proc Greplay |
|
| In-Reply-To: | <ae6baa06-dc02-4345-ab9e-c1d6f94e60d5@r27g2000vbp.googlegroups.com> |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
In preceeding version of ods html, there was a raw solution like this
proc template;
define style my.test;parent=styles.default;
style table from table /
tagattr='align="left" style="position:relative;top:1.5 cm"';
style body from body /pagebreakhtml=_undef_;
end;run;
proc template;
define style my.test1;
parent=styles.default;
style table from table /tagattr='align="right"';
end;run;
ods listing close ;title ' ';
ods noresults;
Ods html3 path="d:\temp" body="temp.htm" gpath="d:\temp"(url=none)
style=my.test;
goptions vsize=10 cm hsize=5cm;
Proc print data=sasuser.class;
var name weight height;run;
ods html3 style=my.test1;
Proc gchart data=sashelp.class;
vbar sex/discrete;
run;
quit;
Ods html3 close ;
ods results;
ods listing;
in 9.1.3 you have an horizontal line!
but with annotations !
and with a vertical line
then you are into frames and no more inside a ordinary html page
it is better to work with a html editor then
HTH
Andre
vasu a écrit :
> HI,
>
> 1) First I have created 4 graphs and displaying it in a single layout
> using proc greplay,
>
> 2) Second I have created on table with one coulmn and 5 rows using
> annotations.
>
>
> My problem is i want to display first the table and vertical line
> should be drawn and proc greplay should be shown adjacent to this
> table using ODS html.
>
> Can anyone help me out in this?
>
> Thanks
> vinodh
>
>
--
André WIELKI
INED (Institut National d'Etudes Démographiques)
Service Informatique
133 Boulevard Davout 75980 Paris Cedex 20
mél : wielki@ined.fr tél : 33 (0) 1 56 06 21 54
|