Home  >  Article  >  php教程  >  php使用Jpgraph绘制简单X-Y坐标图的方法

php使用Jpgraph绘制简单X-Y坐标图的方法

WBOY
WBOYOriginal
2016-06-06 20:03:321317browse

这篇文章主要介绍了php使用Jpgraph绘制简单X-Y坐标图的方法,实例分析了Jpgraph绘制坐标图及绘制曲线的相关技巧,需要的朋友可以参考下

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

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(); //输出图像 ?>

运行后效果图如下:

php使用Jpgraph绘制简单X-Y坐标图的方法

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn