Rev | Line | |
---|
[42] | 1 | <?php // content="text/plain; charset=utf-8"
|
---|
| 2 | require_once ('jpgraph/jpgraph.php');
|
---|
| 3 | require_once ('jpgraph/jpgraph_line.php');
|
---|
| 4 |
|
---|
| 5 | $ydata = array(12,17,22,19,5,15);
|
---|
| 6 |
|
---|
| 7 | $graph = new Graph(220,200);
|
---|
| 8 | $graph->SetScale("textlin",3,35);
|
---|
| 9 | $graph->yscale->SetAutoTicks();
|
---|
| 10 |
|
---|
| 11 | $graph->title->Set('Manual scale, allow adjustment');
|
---|
| 12 | $graph->title->SetFont(FF_FONT1,FS_BOLD);
|
---|
| 13 |
|
---|
| 14 | $line = new LinePlot($ydata);
|
---|
| 15 | $graph->Add($line);
|
---|
| 16 |
|
---|
| 17 | // Output graph
|
---|
| 18 | $graph->Stroke();
|
---|
| 19 |
|
---|
| 20 | ?>
|
---|
| 21 |
|
---|
| 22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.