2

これが私のjpgraphデモコードです:

<?php
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_bar.php');

$datay1=array(35,160,0,0,0,0);
$datay2=array(35,190,190,190,190,190);
$datay3=array(20,70,70,140,230,260);

$graph = new Graph(450,200,'auto');    
$graph->SetScale("textlin");
$graph->SetShadow();
$graph->img->SetMargin(40,30,40,40);
$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());

$graph->xaxis->title->Set('Year 2002');
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);

$graph->title->Set('Group bar plot');
$graph->title->SetFont(FF_FONT1,FS_BOLD);

$bplot1 = new BarPlot($datay1);
$bplot2 = new BarPlot($datay2);
$bplot3 = new BarPlot($datay3);

$bplot1->SetFillColor("orange");
$bplot2->SetFillColor("brown");
$bplot3->SetFillColor("darkgreen");

$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
$gbarplot->SetWidth(0.6);
$graph->Add($gbarplot);

$graph->Stroke();
?>

このコードにはエラーはなく、これは完全に機能しています...私の問題は、これらのカラーバーを識別するためにこのグループバーの画像ラベルをどのように設定できるかです...

norml出力チャートはこれです:ここに画像の説明を入力してください

このラベル画像を設定する必要があります: ここに画像の説明を入力してください

私はこの種の最終的な出力が欲しいです: ここに画像の説明を入力してください

どうすればいいですか????

4

1 に答える 1

1

ここに私のコード:

<?php
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_bar.php');

$datay1=array(35,160,0,0,0,0);
$datay2=array(35,190,190,190,190,190);
$datay3=array(20,70,70,140,230,260);

$graph = new Graph(450,200,'auto');    
$graph->SetScale("textlin");
$graph->SetShadow();
$graph->img->SetMargin(40,30,40,40);
$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());

$graph->xaxis->title->Set('Year 2002');
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);

$graph->title->Set('Group bar plot');
$graph->title->SetFont(FF_FONT1,FS_BOLD);

$bplot1 = new BarPlot($datay1);
$bplot2 = new BarPlot($datay2);
$bplot3 = new BarPlot($datay3);

$bplot1->SetFillColor("orange");
$bplot2->SetFillColor("brown");
$bplot3->SetFillColor("darkgreen");

$gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3));
$gbarplot->SetWidth(0.6);


$graph->legend->SetPos(0.12,0.01,'left','top');
$graph->legend->SetLayout(LEGEND_VERT);
$graph->legend->SetFrameWeight(1);

$bplot1->SetLegend("Pass");
$bplot2->SetLegend("Fail");
$bplot3->SetLegend("Not Eligible");


$graph->Add($gbarplot);

$graph->Stroke();
?>

生成されたチャートは次のとおりです。凡例付きのテスト棒グラフ

これがあなたの目標を達成するのに役立つことを願っています。

于 2012-12-24T19:07:28.377 に答える