一、下載php
二、加載spa
include_once dirname(dirname(__FILE__)).'/libraries/src/jpgraph.php'; //散點 include_once dirname(dirname(__FILE__)).'/libraries/src/jpgraph_scatter.php';
$ DATAX = 陣列(3 0.5 ,3 0.7 ,3 ,4 ,6 0.2 ,6 ,3 0.5 ,8 ,14 ,8 ,11 0.1 ,13 0.7 ); $ DATAY = 陣列(20 ,22 ,12 ,13 ,17 ,20 ,16 ,19 ,30 ,31,40 ,43 ); $圖表= 新圖形(300 ,200 ); $ graph - > SetScale ('linlin' );
$圖表- > IMG - > SetMargin (40 ,40 ,40 ,40 ); $ graph - > SetShadow (); $ graph - > title - > Set (「 一個簡單的散點圖」 ); $ graph - > title - > SetFont (FF_FONT1 ,FS_BOLD ); $ sp1 = new ScatterPlot ($ datay ,$ datax );
$ graph - > Add ($ sp1 ); $ graph - > Stroke ();