Jpgraph:require_once

时间:2018-04-21 16:38:34

标签: php charts

我正在研究一个包含计算涡轮反应器循环的php项目。 从表格发送的条目数据被处理,并且作为输出我获得压力。所以我想在结果的同一页面绘制压力图表。 我使用jpgraph编写了这段代码:

erequire_once('../graphe/jpgraph.php');
require_once('../graphe/jpgraph_line.php');

$datay1 = array($Pi0,$Pi0,$Pi2,$Pi4,$Pi5,$Pi7m,$Pi8,$Pi9,$Pi10);

// Setup the graph
$graph = new Graph(700,400);
$graph->SetScale("textlin");

$theme_class=new UniversalTheme;

$graph->SetTheme($theme_class);
$graph->img->SetAntiAliasing(false);
$graph->title->Set('Filled Y-grid');
$graph->SetBox(false);

$graph->img->SetAntiAliasing();

$graph->yaxis->HideZeroLabel();
$graph->yaxis->HideLine(false);
$graph->yaxis->HideTicks(false,false);

 $graph->xgrid->Show();
$graph->xgrid->SetLineStyle("solid");
$graph->xaxis->SetTickLabels(array('A','B','C','C','D','E','F','G','H'));
$graph->xgrid->SetColor('#E3E3E3');

// Create the first line
$p1 = new LinePlot($datay1);
$graph->Add($p1);
$p1->SetColor("#6495ED");
$p1->SetLegend('Line 1');


$graph->legend->SetFrameWeight(1);

// Output line
$graph->Stroke();  
?>

包含jpgrap文件夹的graphe文件夹名为graphe 当我发送数据我得到了压力,但我没有得到图表我得到这个错误消息

  

警告:require_once(../ graphe / jpgraph.php):无法打开流:第588行的C:\ wamp64 \ www \ turbo1App \ results_mcmfPC.php中没有此类文件或目录

3 个答案:

答案 0 :(得分:0)

project arborescence

这是我的项目文件夹所包含的内容。我希望它会有所帮助。

答案 1 :(得分:0)

  

警告:require_once(../ graphe / jpgraph.php):无法打开流:   在......中没有该文件或目录   第588行的C:\ wamp64 \ www \ turbo1App \ results_mcmfPC.php

这是因为你需要写:

require_once('./graphe/jpgraph_line.php');

require_once('graphe/jpgraph_line.php');

而不是:

require_once('../graphe/jpgraph_line.php');

答案 2 :(得分:0)

您必须在图像文件夹上设置写权限