我在PHP中有一个用jpg图实现的多图:第一个和第二个图具有相同的比例e左边的轴,第三个图具有不同的比例或值范围,轴在对。 使用代码:
$width=700;
$height=500;
// Create the graph and set a scale.
// These two calls are always required
$graph = new Graph($width, $height);
$graph->SetScale("intlin"); // X and Y axis
$graph->SetY2Scale("lin"); // Y2 axis
$theme_class=new UniversalTheme;
$graph->SetTheme($theme_class);
$graph->img->SetAntiAliasing(false);
$graph->title->Set('Filled Y-grid');
$graph->SetBox(false);
$graph->xaxis->title->Set("Days");
$graph->img->SetAntiAliasing();
// Create the first line
$p1 = new LinePlot($ydata1);
$graph->Add($p1);
$p1->SetColor("#0033FF");
$p1->SetLegend('Rain');
// Create the second line
$p2 = new LinePlot($ydata2);
$graph->Add($p2);
$p2->SetColor("#33FFFF");
$p2->SetLegend('Irrigation');
// Create the third line
$p3 = new LinePlot($ydata3);
$graph->AddY2($p3);
$p3->SetColor("#000000");
$p3->SetLegend('Relative Soil Moisture');
$graph->legend->SetFrameWeight(0);
// Setup a title for the graph
$graph->title->Set($titolo);
$nome_img=substr($titolo, 0, -10);
// Display the graph
$graph->Stroke("tmp/graph_$nome_img.png");
echo "<img src=\"tmp/graph_$nome_img.png\"> ";
我只有左边的轴,右边的轴没有出现。你看到附加的图像。 有一些错误? 感谢。
答案 0 :(得分:0)
我认为,您必须设置图表的边距,因此请查看您的比例。是的,只有不可见:
$graph->SetMargin(50,50,50,50);