为什么我同样的代码看不到输出啊

来源:2-2 绘制XY统计图

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();

为什么我这样写了在浏览器里看不到啊?????

写回答 关注

2回答

  • qq_看看_1
    2018-05-23 17:27:20

    把数组换成从0开始就可以了

  • 木呆先生
    2016-12-09 08:31:16

    刚才看视频、完了忽然跳出来这个问题、然后就点击来看了、然后就没有然后了、哈哈、。


神奇的JpGraph类库

JpGraph类库可以画出炫彩的统计图,掌握JpGraph类库的使用

15179 学习 · 31 问题

查看课程

相似问题