forked from halo-battle/game
Version 1.12
This commit is contained in:
parent
2a066a7498
commit
de31cd3e9a
1373 changed files with 156282 additions and 45238 deletions
21
onyx2/include/jpgraph/Examples/manscaleex2.php
Normal file
21
onyx2/include/jpgraph/Examples/manscaleex2.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
include ("../jpgraph.php");
|
||||
include ("../jpgraph_line.php");
|
||||
|
||||
$ydata = array(12,17,22,19,5,15);
|
||||
|
||||
$graph = new Graph(220,200);
|
||||
$graph->SetScale("textlin",3,35);
|
||||
|
||||
$graph->title->Set('Manual scale, exact limits');
|
||||
$graph->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
|
||||
$line = new LinePlot($ydata);
|
||||
$graph->Add($line);
|
||||
|
||||
// Output graph
|
||||
$graph->Stroke();
|
||||
|
||||
?>
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue