mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-10-31 14:52:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
|     /* Libchart - PHP chart library
 | |
|      * Copyright (C) 2005-2011 Jean-Marc Trémeaux (jm.tremeaux at gmail.com)
 | |
|      * 
 | |
|      * This program is free software: you can redistribute it and/or modify
 | |
|      * it under the terms of the GNU General Public License as published by
 | |
|      * the Free Software Foundation, either version 3 of the License, or
 | |
|      * (at your option) any later version.
 | |
|      * 
 | |
|      * This program is distributed in the hope that it will be useful,
 | |
|      * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|      * GNU General Public License for more details.
 | |
|      *
 | |
|      * You should have received a copy of the GNU General Public License
 | |
|      * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|      * 
 | |
|      */
 | |
| 
 | |
|     require_once 'model/ChartConfig.php';
 | |
|     require_once 'model/Point.php';
 | |
|     require_once 'model/DataSet.php';
 | |
|     require_once 'model/XYDataSet.php';
 | |
|     require_once 'model/XYSeriesDataSet.php';
 | |
|     
 | |
|     require_once 'view/primitive/Padding.php';
 | |
|     require_once 'view/primitive/Rectangle.php';
 | |
|     require_once 'view/primitive/Primitive.php';
 | |
|     require_once 'view/text/Text.php';
 | |
|     require_once 'view/color/Color.php';
 | |
|     require_once 'view/color/ColorSet.php';
 | |
|     require_once 'view/color/Palette.php';
 | |
|     require_once 'view/axis/Bound.php';
 | |
|     require_once 'view/axis/Axis.php';
 | |
|     require_once 'view/plot/Plot.php';
 | |
|     require_once 'view/caption/Caption.php';
 | |
|     require_once 'view/chart/Chart.php';
 | |
|     require_once 'view/chart/BarChart.php';
 | |
|     require_once 'view/chart/VerticalBarChart.php';
 | |
|     require_once 'view/chart/HorizontalBarChart.php';
 | |
|     require_once 'view/chart/LineChart.php';
 | |
|     require_once 'view/chart/PieChart.php';
 | |
| ?>
 |