histogram: Make histograms crash less
[ninja.git] / application / helpers / phplot_charts.php
blobbafde1aa8e2adb77d7fc3ced06883d032c4402e7
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3 * Charts helper class
4 */
5 class phplot_charts_Core
7 /**
8 * Autoload phplot, now you can use new PHPlot()
10 * This is how you save a file:
12 * <code>
13 * $plot = new PHPlot($height, $width, $filename);
14 * $plot->SetFileFormat('png');
15 * $plot->SetIsInline(true);
16 * // ...
17 * $plot->DrawGraph();
18 * </code>
20 public static function load()
22 require_once Kohana::find_file('vendor','phplot/phplot/phplot');