php 는 Jpgraph 를 사용 하여 기둥 그림 을 그 리 는 방법

1276 단어 phpJpgraph
이 글 은 phop 이 Jpgraph 를 사용 하여 기둥 그림 을 그 리 는 방법 을 실례 로 서술 하 였 다.모두 에 게 참고 하도록 공유 하 다.구체 적 인 실현 방법 은 다음 과 같다.

<?php 
include ("src/jpgraph.php"); 
include ("src/jpgraph_bar.php"); 
$data = array(19,23,34,38,45,67,71,78,85,87,90,96); //    
$graph = new Graph(400,300); //    Graph   
$graph->SetScale("textlin");                 
$graph->SetShadow(); //     
$graph->img->SetMargin(40,30,20,40); //     
$barplot = new BarPlot($data); //  BarPlot   
$barplot->SetFillColor('blue'); //     
$barplot->value->Show(); //       
$graph->Add($barplot); //           
$graph->title->Set("     "); //     X-Y   
$graph->xaxis->title->Set("  "); 
$graph->yaxis->title->Set("   (   )"); 
$graph->title->SetFont(FF_SIMSUN,FS_BOLD); //     
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD); 
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD); 
$graph->Stroke(); 
?>
다음 그림 과 같이 실행 효과:

본 논문 에서 말 한 것 이 여러분 의 phop 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기