富贵资源网 Design By www.hznty.com

本文实例讲述了php使用Jpgraph绘制简单X-Y坐标图的方法。分享给大家供大家参考。具体实现方法如下:

<"src/jpgraph.php"); 
include ("src/jpgraph_line.php"); 
//将要用于图表创建的数据存放在数组中 
$data = array(19,23,34,38,45,67,71,78,85,87,90,96); 
$graph = new Graph(400,300); //创建新的Graph对象 
$graph->SetScale("textlin"); //设置刻度样式 
$graph->img->SetMargin(30,30,80,30); //设置图表边界 
$graph->title->Set("Year to Date Cost"); //设置图表标题 
// Create the linear plot 
$lineplot=new LinePlot($data); // 创建新的LinePlot对象 
$lineplot->SetLegend("Amount(M dollars)"); //设置图例文字 
$lineplot->SetColor("red"); // 设置曲线的颜色 
// Add the plot to the graph 
$graph->Add($lineplot); //在统计图上绘制曲线 
// Display the graph 
$graph->Stroke(); //输出图像 
"//img.jbzj.com/file_images/article/201506/2015610153311046.jpg" alt="" />

希望本文所述对大家的php程序设计有所帮助。

富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com