Lee小麦
2016-12-08 10:51
<?php
//xy坐标图
require_once 'src/jpgraph.php';
require_once 'src/jpgraph_line.php';
//绘制画布
$graph=new Graph(600,400);//宽,高
//textint指的是横坐标为text,纵坐标为int的格式;
$aAxistype='textint';
$graph->SetScale($aAxistype);
//绘制图标的标题
$graph->title->Set('this is a test');
$data=array(1=>10,2=>55,3=>49,4=>89,5=>32,6=>34,7=>54,8=>44,9=>24,10=>97);
//将数组通过jpgraph中的linplot方式,传入纵坐标
$linePlot=new LinePlot($data);
//设置图例
$linePlot->SetLegend('tuli');
//将统计图放置在画布上
$graph->Add($linePlot);
//输出
$graph->Stroke();
为什么我这样写了在浏览器里看不到啊?????
把数组换成从0开始就可以了
刚才看视频、完了忽然跳出来这个问题、然后就点击来看了、然后就没有然后了、哈哈、。
神奇的JpGraph类库
15179 学习 · 31 问题
相似问题