libchart.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /* Libchart - PHP chart library
  3. * Copyright (C) 2005-2011 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. require_once 'model/ChartConfig.php';
  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. require_once 'view/primitive/Padding.php';
  25. require_once 'view/primitive/Rectangle.php';
  26. require_once 'view/primitive/Primitive.php';
  27. require_once 'view/text/Text.php';
  28. require_once 'view/color/Color.php';
  29. require_once 'view/color/ColorSet.php';
  30. require_once 'view/color/Palette.php';
  31. require_once 'view/axis/Bound.php';
  32. require_once 'view/axis/Axis.php';
  33. require_once 'view/plot/Plot.php';
  34. require_once 'view/caption/Caption.php';
  35. require_once 'view/chart/Chart.php';
  36. require_once 'view/chart/BarChart.php';
  37. require_once 'view/chart/VerticalBarChart.php';
  38. require_once 'view/chart/HorizontalBarChart.php';
  39. require_once 'view/chart/LineChart.php';
  40. require_once 'view/chart/PieChart.php';
  41. ?>