Initial repo created
[timetracker.git] / WEB-INF / lib / libchart / classes / libchart.php
1 <?php
2         /* Libchart - PHP chart library
3          * Copyright (C) 2005-2008 Jean-Marc Trémeaux (jm.tremeaux at gmail.com)
4          * 
5          * This program is free software: you can redistribute it and/or modify
6          * it under the terms of the GNU General Public License as published by
7          * the Free Software Foundation, either version 3 of the License, or
8          * (at your option) any later version.
9          * 
10          * This program is distributed in the hope that it will be useful,
11          * but WITHOUT ANY WARRANTY; without even the implied warranty of
12          * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13          * GNU General Public License for more details.
14          *
15          * You should have received a copy of the GNU General Public License
16          * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17          * 
18          */
19
20         require_once 'model/Point.php';
21         require_once 'model/DataSet.php';
22         require_once 'model/XYDataSet.php';
23         require_once 'model/XYSeriesDataSet.php';
24         
25         require_once 'view/primitive/Padding.php';
26         require_once 'view/primitive/Rectangle.php';
27         require_once 'view/primitive/Primitive.php';
28         require_once 'view/text/Text.php';
29         require_once 'view/color/Color.php';
30         require_once 'view/color/ColorSet.php';
31         require_once 'view/color/Palette.php';
32         require_once 'view/axis/Bound.php';
33         require_once 'view/axis/Axis.php';
34         require_once 'view/plot/Plot.php';
35         require_once 'view/caption/Caption.php';
36         require_once 'view/chart/Chart.php';
37         require_once 'view/chart/BarChart.php';
38         require_once 'view/chart/VerticalBarChart.php';
39         require_once 'view/chart/HorizontalBarChart.php';
40         require_once 'view/chart/LineChart.php';
41         require_once 'view/chart/PieChart.php';
42 ?>