]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/libchart/classes/libchart.php
Initial repo created
[timetracker.git] / WEB-INF / lib / libchart / classes / libchart.php
diff --git a/WEB-INF/lib/libchart/classes/libchart.php b/WEB-INF/lib/libchart/classes/libchart.php
new file mode 100644 (file)
index 0000000..f84210f
--- /dev/null
@@ -0,0 +1,42 @@
+<?php
+       /* Libchart - PHP chart library
+        * Copyright (C) 2005-2008 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/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';
+?>
\ No newline at end of file