欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP使用JPGRAPH制作圆柱图的方法详解

程序员文章站 2023-11-04 20:51:16
本文实例讲述了php使用jpgraph制作圆柱图的方法。分享给大家供大家参考,具体如下: 制作圆柱图像的要点 首先,要使用jpgraph库,我们先要去官网进行下载,网址:https...

本文实例讲述了php使用jpgraph制作圆柱图的方法。分享给大家供大家参考,具体如下:

制作圆柱图像的要点

首先,要使用jpgraph库,我们先要去官网进行下载,网址:https://jpgraph.net/。 下载完毕后将他解压到PHP使用JPGRAPH制作圆柱图的方法详解

这个文件夹需要自己手动添加,然后在相同的路径下创建一个文件 命名为jpgraph.php

函数名 作用
new graph 创建一个新的graph对象
jpgraph_bar.php 加载画出圆柱的文件
jpgraph.php 加载使用jp库的文件
setscale 设置刻度样式
new barplot 创建一个新的barplot对象
setfillcolor 用于指定条形的填充颜色
setfont 设置字体
xaxis -> set 设置x轴标题
yaxis -> set 设置y轴标题
title -> set 设置主标题
stroke 输出图像
setcolor 设置标题颜色
setmargin 设置间距
setticklabels 获取数组里的元素并输出
value -> show 显示值
graph_theme 设置主题

这是我们本次需要用到的一些函数,鉴于我的表达能力不是特别好,你们觉得有点看不懂的话,可以去看一下别的博客来帮助自己理解

现在开始编写我们的代码

首先,我们要输出的是圆柱,那么我们则要输入

require_once ("jpgraph/src/jpgraph.php");
require_once ("jpgraph/src/jpgraph_bar.php");

ok,这个时候文件已经加载了,为了避免你们目录和我不一致导致报错无法实现,我把我的文件存在位置截了下来,如下:

PHP使用JPGRAPH制作圆柱图的方法详解
接下来,我们要创建两个数组,一个是圆柱数据,另一个是x轴标题数据

$date = array(19,23,34,38,45,67,71,78,85,87,90,96);//此处是圆柱数据
$xdate = array("1","2","3","4","5","6","7","8","9","10","11","12");//此处是x轴的标题数据

这个时候,我们已经完成了我们绘制图形所需要的数据了,接下来就是创建圆柱和调整它的颜色了

所要做的代码如下:

$graph = new graph (500,400);//创建一个新的graph对象,其宽和高分别为500,300
$graph -> setscale("textlin");//设置其刻印样式
$graph -> setshadow();//设置其阴影样式
$graph -> img -> setmargin(40,30,40,50);//设置其上间距40,右间距30,下间距40,左间距50

$graph -> graph_theme = null;//设置他的主题为空,使得下面的元素可实现

$bplot = new barplot ($date);//创建barplot对象
$bplot -> setcolor("pink");//设置barplot的颜色
$bplot -> value -> show("");//显示他的值
$graph ->add($bplot);//把他的值放入$graph里

$graph -> title -> set(iconv("utf-8","gb2312//ignore","年度收支表"));//设置标题名字并进行转换
$graph -> xaxis -> title -> set(iconv("utf-8","gb2312//ignore","月份"));//同上,设置x轴标题
$graph -> yaxis -> title -> set(iconv("utf-8","gb2312//ignore","总金额(兆美元)"));//同上,设置y轴标题

$graph -> title -> setcolor("red");//设置标题颜色
$graph -> title -> setmargin(10);//设置标题间距
$graph -> xaxis -> title -> setmargin(1);//设置x轴标题间距
$graph -> xaxis ->setticklabels($xdate);//接收xdate数组里的元素

$graph -> title -> setfont(ff_simsun,fs_bold);//设置字体样式
$graph -> xaxis -> title ->setfont(ff_simsun,fs_bold);
$graph -> yaxis -> title ->setfont(ff_simsun,fs_bold);
$graph -> xaxis -> setfont(ff_simsun,fs_bold);//设置x轴里所有的字体样式

$graph -> stroke();//输出

到这里,我们的圆柱就已经完成了,完整的代码如下:

<?php
require_once ("jpgraph/src/jpgraph.php");
require_once ("jpgraph/src/jpgraph_bar.php");

$date = array(19,23,34,38,45,67,71,78,85,87,90,96);
$xdate = array("1","2","3","4","5","6","7","8","9","10","11","12");
$graph = new graph (500,400);
$graph->setscale("textlin");
$graph->setshadow();
$graph->img->setmargin(40,30,40,50);

$graph->graph_theme = null;

$barplot = new barplot($date);
$barplot->setfillcolor("pink");
$barplot->value->show();
$graph->add($barplot);

$graph->title->set(iconv("utf-8","gb2312//ignore","年度收支表"));
$graph->xaxis->title->set(iconv("utf-8","gb2312//ignore","月份"));
$graph->yaxis->title->set(iconv("utf-8","gb2312//ignore","总金额(兆美元)"));

$graph->title->setcolor("red");
$graph->title->setmargin(10);
$graph->xaxis->title->setmargin(1);
$graph->xaxis->setticklabels($xdate);

$graph->title->setfont(ff_simsun,fs_bold);
$graph->yaxis->title->setfont(ff_simsun,fs_bold);
$graph->xaxis->title->setfont(ff_simsun,fs_bold);
$graph->xaxis->setfont(ff_simsun,fs_bold);


$graph -> stroke();
?>

最终效果如下图:
PHP使用JPGRAPH制作圆柱图的方法详解