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/patterns/LightLine.php
Normal file
50
artichow/patterns/LightLine.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 ARTICHOW."/LinePlot.class.php";
|
||||
|
||||
class LightLinePattern extends Pattern {
|
||||
|
||||
public function create() {
|
||||
|
||||
$legend = $this->getArg('legend');
|
||||
|
||||
$y = $this->getArg('y');
|
||||
|
||||
if($y === NULL) {
|
||||
awImage::drawError("Class LightLinePattern: Argument 'y' must not be NULL.");
|
||||
}
|
||||
|
||||
$plot = new LinePlot($y);
|
||||
$plot->setSize(0.7, 1);
|
||||
$plot->setCenter(0.35, 0.5);
|
||||
$plot->setPadding(35, 15, 35, 30);
|
||||
$plot->setColor(new Orange());
|
||||
$plot->setFillColor(new LightOrange(80));
|
||||
|
||||
$plot->grid->setType(Line::DASHED);
|
||||
|
||||
$plot->mark->setType(Mark::CIRCLE);
|
||||
$plot->mark->setFill(new MidRed);
|
||||
$plot->mark->setSize(6);
|
||||
|
||||
$plot->legend->setPosition(1, 0.5);
|
||||
$plot->legend->setAlign(Legend::LEFT);
|
||||
$plot->legend->shadow->smooth(TRUE);
|
||||
|
||||
if($legend !== NULL) {
|
||||
$plot->legend->add($plot, $legend, Legend::MARK);
|
||||
}
|
||||
|
||||
return $plot;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue