Changeset 9295 for trunk/MagicSoft/Mars/datacenter/db/plot.php
- Timestamp:
- 02/03/09 17:33:11 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/plot.php
r9249 r9295 41 41 42 42 //set up plot 43 $c= new XYChart(640,400);//, 0xeeeeee, 0x000000, 1); 43 if (empty($_GET["x"])) 44 $x=640; 45 else 46 $x=$_GET["x"]; 47 if (empty($_GET["y"])) 48 $y=400; 49 else 50 $y=$_GET["y"]; 51 52 $c= new XYChart($x,$y);//, 0xeeeeee, 0x000000, 1); 53 $c->setPlotArea(70, 45, $x-100, $y-100, 0xffffff, -1, 0xcccccc, 0xccccccc); 54 //$c= new XYChart(440,250);//, 0xeeeeee, 0x000000, 1); 55 //$c->setPlotArea(70, 45, 340, 150, 0xffffff, -1, 0xcccccc, 0xccccccc); 44 56 //$c->setRoundedFrame(); 45 $c->setPlotArea(70, 45, 540, 300, 0xffffff, -1, 0xcccccc, 0xccccccc);46 57 47 58 //size of the symbols
Note:
See TracChangeset
for help on using the changeset viewer.