sety2scale("lin"); $graph->setshadow(); //设置图像的阴影样式 $graph->img->setmargin(40,50,20,70); //设置图像边距 $graph->title->set(" />

php使用Jpgraph绘制复杂X-Y坐标图的方法

 2025-01-16  阅读 254  评论 8  点赞 499

摘要:本文实例讲述了php使用jpgraph绘制复杂x-y坐标图的方法。分享给大家供大家参考。具体实现方法如下: setscale("textlin"); $graph->sety2scale("lin"); $graph->setshadow(); //设置图像的阴影样式 $graph->img->setmargin(40,50,20,70); //设置图像边距 $graph->title->set(

本文实例讲述了php使用jpgraph绘制复杂x-y坐标图的方法。分享给大家供大家参考。具体实现方法如下:

php使用Jpgraph绘制复杂X-Y坐标图的方法

<?php 
include ("src/jpgraph.php"); 
include ("src/jpgraph_line.php"); 
$data1 = array(19,23,34,38,45,67,71,78,85,87,90,96); //第一条曲线的数组 
$data2 = array(523,634,371,278,685,587,490,256,398,545,367,577); //第二条曲线的数组 
$graph = new graph(400,300); //创建新的graph对象 
$graph->setscale("textlin"); 
$graph->sety2scale("lin"); 
$graph->setshadow(); //设置图像的阴影样式 
$graph->img->setmargin(40,50,20,70); //设置图像边距 
$graph->title->set("年度收支表"); //设置图像标题 
$lineplot1=new lineplot($data1); //创建设置两条曲线对象 
$lineplot2=new lineplot($data2); 
$graph->add($lineplot1); //将曲线放置到图像上 
$graph->addy2($lineplot2); 
$graph->xaxis->title->set("月份"); //设置坐标轴名称 
$graph->yaxis->title->set("兆美元"); 
$graph->y2axis->title->set("兆美元"); 
$graph->title->setfont(ff_simsun,fs_bold); //设置字体 
$graph->yaxis->title->setfont(ff_simsun,fs_bold); 
$graph->y2axis->title->setfont(ff_simsun,fs_bold); 
$graph->xaxis->title->setfont(ff_simsun,fs_bold); 
$lineplot1->setcolor("red"); //设置颜色 
$lineplot2->setcolor("blue"); 
$lineplot1->setlegend("cost amount"); //设置图例名称 
$lineplot2->setlegend("revenue amount"); 
$graph->legend->setlayout(legend_hor); //设置图例样式和位置 
$graph->legend->pos(0.4,0.95,"center","bottom"); 
$graph->stroke(); //输出图像 
?>

运行效果如下图所示:

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


标签:phpphp教程

评论列表:

  •   henbucuo
     发布于 3天前回复该评论
  • 写的很不错,学到了!
  •   weihang233
     发布于 2天前回复该评论
  • 又学到了新知识!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0276秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号