Source for file LightLine.php
Documentation is available at LightLine.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.  
 * @package linea21.externals  
require_once ARTICHOW. "/LinePlot.class.php";  
        $legend =  $this->getArg('legend');  
        $plot =  new LinePlot($y);  
        $plot->setCenter(0.35, 0.5);  
        $plot->setPadding(35, 15, 35, 30);  
        $plot->setColor(new Orange());  
        $plot->setFillColor(new LightOrange(80));  
        $plot->mark->setFill(new MidRed);  
        $plot->legend->setPosition(1, 0.5);  
        $plot->legend->shadow->smooth(TRUE);  
 
 
        
       |