本文实例讲述了php使用Jpgraph绘制柱形图的方法。分享给大家供大家参考。具体实现方法如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
include ( "src/jpgraph.php" );
include ( "src/jpgraph_bar.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 ->SetShadow(); //设置阴影
$graph ->img->SetMargin(40,30,20,40); //设置边距
$barplot = new BarPlot( $data ); //创建BarPlot对象
$barplot ->SetFillColor( 'blue' ); //设置颜色
$barplot ->value->Show(); //设置显示数字
$graph ->Add( $barplot ); //将柱形图添加到图像中
$graph ->title->Set( "年度收支表" ); //设置标题和X-Y轴标题
$graph ->xaxis->title->Set( "月份" );
$graph ->yaxis->title->Set( "总金额(兆美元)" );
$graph ->title->SetFont(FF_SIMSUN,FS_BOLD); //设置字体
$graph ->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph ->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph ->Stroke();
?>
|
相关文章
猜你喜欢
- ASP.NET自助建站系统的数据库备份与恢复操作指南 2025-06-10
- 个人网站服务器域名解析设置指南:从购买到绑定全流程 2025-06-10
- 个人网站搭建:如何挑选具有弹性扩展能力的服务器? 2025-06-10
- 个人服务器网站搭建:如何选择适合自己的建站程序或框架? 2025-06-10
- 64M VPS建站:能否支持高流量网站运行? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-29 90
-
2025-05-29 70
-
ubuntu下编译安装xcache for php5.3 的具体操作步骤
2025-05-29 51 -
2025-05-29 59
-
2025-05-27 58
热门评论