Несколько осей у в jpgraph
Я имею в 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\"> ";
У меня только ось слева, правые оси не появляются. Вы видите прикрепленное изображение. Есть какая-то ошибка? Благодарю.
1 ответ
Я думаю, вы должны установить поле для графика, так что посмотрите свой масштаб. Есть, только не видно
$graph->SetMargin(50,50,50,50);