[Phphtmllib-devel] SF.net SVN: phphtmllib:[3233] trunk/open2300/lib/modules
Status: Beta
Brought to you by:
hemna
From: <he...@us...> - 2009-03-01 21:14:13
|
Revision: 3233 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3233&view=rev Author: hemna Date: 2009-03-01 21:13:56 +0000 (Sun, 01 Mar 2009) Log Message: ----------- sizes Modified Paths: -------------- trunk/open2300/lib/modules/graphs/SingleDataDateLineGraph.inc trunk/open2300/lib/modules/graphs/SingleDataDateScatterGraph.inc trunk/open2300/lib/modules/graphs/TempDewPointLineGraph.inc trunk/open2300/lib/modules/home/page/HomePage.inc Modified: trunk/open2300/lib/modules/graphs/SingleDataDateLineGraph.inc =================================================================== --- trunk/open2300/lib/modules/graphs/SingleDataDateLineGraph.inc 2009-03-01 21:12:16 UTC (rev 3232) +++ trunk/open2300/lib/modules/graphs/SingleDataDateLineGraph.inc 2009-03-01 21:13:56 UTC (rev 3233) @@ -67,7 +67,7 @@ public function render() { // Create the graph. These two calls are always required - $graph = new Graph(450,200,"auto"); + $graph = new Graph(510,200,"auto"); $graph->img->SetImgFormat('gif'); $graph->SetScale("datlin"); Modified: trunk/open2300/lib/modules/graphs/SingleDataDateScatterGraph.inc =================================================================== --- trunk/open2300/lib/modules/graphs/SingleDataDateScatterGraph.inc 2009-03-01 21:12:16 UTC (rev 3232) +++ trunk/open2300/lib/modules/graphs/SingleDataDateScatterGraph.inc 2009-03-01 21:13:56 UTC (rev 3233) @@ -55,7 +55,7 @@ public function render() { // Create the graph. These two calls are always required - $graph = new Graph(400,200,"auto"); + $graph = new Graph(510,200,"auto"); $graph->img->SetImgFormat('gif'); $graph->SetScale("datlin"); //$graph->SetTickDensity(TICKD_DENSE, TICKD_VERYSPARSE); Modified: trunk/open2300/lib/modules/graphs/TempDewPointLineGraph.inc =================================================================== --- trunk/open2300/lib/modules/graphs/TempDewPointLineGraph.inc 2009-03-01 21:12:16 UTC (rev 3232) +++ trunk/open2300/lib/modules/graphs/TempDewPointLineGraph.inc 2009-03-01 21:13:56 UTC (rev 3233) @@ -33,7 +33,7 @@ public function render() { // Create the graph. These two calls are always required - $graph = new Graph(480,200,"auto"); + $graph = new Graph(510,200,"auto"); $graph->img->SetImgFormat('gif'); $graph->SetScale("datlin"); //$graph->SetY2Scale("lin"); Modified: trunk/open2300/lib/modules/home/page/HomePage.inc =================================================================== --- trunk/open2300/lib/modules/home/page/HomePage.inc 2009-03-01 21:12:16 UTC (rev 3232) +++ trunk/open2300/lib/modules/home/page/HomePage.inc 2009-03-01 21:13:56 UTC (rev 3233) @@ -73,14 +73,14 @@ $right_div->add(new DIVtag(array('id' => 'idRainLineGraphdiv', 'style'=> 'padding-top:5px;padding-bottom:5px;height:201px;'),$rain_img)); $radar_img = IMGtag::factory("http://radblast-mi.wunderground.com/cgi-bin/radar/WUNIDS_map?station=DAX&brand=wui&num=1&delay=15&type=N0R&frame=0&scale=0.172&noclutter=0&t=1235925219&lat=38.81977081&lon=-121.02596283&label=Pilot+Hill%2C+CA&showstorms=0&map.x=400&map.y=240¢erx=21¢ery=408&transx=-379&transy=168&showlabels=1&severe=0&rainsnow=0&lightning=0&smooth=0", - 440,300); + 460,320); $radar_img->set_id('idRadarImg'); $radar_div = new DIVtag(array('id' => 'idRadardiv'),$radar_img); - $table = TABLEtag::factory("100%",0,0,10); + $table = TABLEtag::factory("100%",0,0,5); - $table->add_row(new TDtag(array('style' => 'vertical-align:top;width:480px;'),$right_div), + $table->add_row(new TDtag(array('style' => 'vertical-align:top;width:510px;'),$right_div), new TDtag(array('style' => 'vertical-align:top;'),$radar_div)); return $table; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |