与phplot并排绘图

时间:2016-07-01 00:27:52

标签: php graph phplot

我正在使用phplot。我需要在另一个图下显示每个图。我尝试使用$plot->SetPlotAreaPixels()方法执行此操作,但它的工作不正确。

$data = array(
   // plots data 
);

$w = 1600; // width
$h = 280; // one graph height


$plot = new PHPlot($w, $h * count($data));
$plot->SetPrintImage(0);
// ... more settings ...

$i = 0;
foreach (array_keys($data) as $title) {
    $plot->SetPlotAreaPixels(null, $h * $i, null, $h);
    $plot->SetDataValues($data[$title]);
    $plot->DrawGraph();

    $i++;
}


$plot->PrintImage();

但这看起来很奇怪:

enter image description here

我的代码有什么问题?

http://pastebin.com/wejv5cpD

1 个答案:

答案 0 :(得分:0)

我将$plot->SetPlotAreaPixels(null, $h * $i, null, $h);替换为$plot->SetNewPlotAreaPixels($margin_left, $h * $i + $margin_top, $w - $margin_right, $h * ($i + 1) - $margin_bottom);并设置边距。现在它工作正常。