forked from halo-battle/game
Version 1.9g
This commit is contained in:
parent
d028822d0b
commit
4c9814a99c
800 changed files with 237325 additions and 1949 deletions
50
artichow/examples/site/mini-002.php
Normal file
50
artichow/examples/site/mini-002.php
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
/*
|
||||
* This work is hereby released into the Public Domain.
|
||||
* To view a copy of the public domain dedication,
|
||||
* visit http://creativecommons.org/licenses/publicdomain/ or send a letter to
|
||||
* Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
require_once "../../LinePlot.class.php";
|
||||
|
||||
|
||||
$graph = new Graph(150, 100);
|
||||
|
||||
$graph->setAntiAliasing(TRUE);
|
||||
|
||||
$x = array(
|
||||
1, 2, 5, 0.5, 3, 8, 7, 6, 2, -4
|
||||
);
|
||||
|
||||
$plot = new LinePlot($x);
|
||||
$plot->grid->setNobackground();
|
||||
$plot->setPadding(20, 8, 8, 20);
|
||||
$plot->setXAxisZero(FALSE);
|
||||
|
||||
// Set a background gradient
|
||||
$plot->setBackgroundGradient(
|
||||
new LinearGradient(
|
||||
new Color(210, 210, 210),
|
||||
new Color(255, 255, 255),
|
||||
0
|
||||
)
|
||||
);
|
||||
|
||||
// Set semi-transparent background gradient
|
||||
$plot->setFillGradient(
|
||||
new LinearGradient(
|
||||
new Color(230, 150, 150, 20),
|
||||
new Color(230, 230, 180, 50),
|
||||
90
|
||||
)
|
||||
);
|
||||
|
||||
$plot->xAxis->label->hideFirst(TRUE);
|
||||
$plot->xAxis->label->hideLast(TRUE);
|
||||
$plot->xAxis->setNumberByTick('minor', 'major', 2);
|
||||
|
||||
$graph->add($plot);
|
||||
$graph->draw();
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue