最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php報表之jpgraph柱狀圖實例代碼

 更新時間:2011年08月22日 23:30:12   作者:  
jpgraph是php中一個非常非常強大的第三方報表工具,據(jù)說能完成一切你想要的圖形
新手初識jpgraph肯定會遇到各種各樣的問題,比如亂碼什么的,本案例是jpgraph3.0.7制作,也經(jīng)過本人的多次實驗,解決亂碼問題
復制代碼 代碼如下:

<?php
$datay=array(); //縱坐標數(shù)據(jù)
$datax=array(); //橫坐標數(shù)據(jù)
foreach ($usernums as $key => $value){
$datay[] = $value;
$datax[] = $userids[$key];
}
require_once (‘jpgraph-3.0.7/jpgraph/jpgraph.php');
require_once (‘jpgraph-3.0.7/jpgraph/jpgraph_bar.php');
// Create the graph. These two calls are always required
$graph = new Graph(800,600); //圖像高寬
$graph->SetScale(“textlin”);
$graph->xaxis->SetTickLabels($datax);
$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
$graph->xaxis->SetLabelAngle(30);
$graph->yaxis->scale->SetGrace(20);
$graph->xaxis->scale->SetGrace(20);
// Add a drop shadow
$graph->SetShadow();
// Adjust the margin a bit to make more room for titles
$graph->img->SetMargin(40,30,20,40);
// Create a bar pot
$bplot = new BarPlot($datay);
// Adjust fill color
$bplot->SetFillColor(‘orange');
$bplot->value->Show();
$bplot->value->SetFont(FF_ARIAL,FS_BOLD,10);
$bplot->value->SetAngle(45);
$bplot->value->SetFormat(‘%d');
$graph->Add($bplot);
// Setup the titles
$graph->title->Set(iconv(“UTF-8″, “gb2312″,”用戶消費報表圖”));
$graph->xaxis->title->Set(iconv(“UTF-8″, “gb2312″,”用戶姓名”));
$graph->yaxis->title->Set(iconv(“UTF-8″, “gb2312″,”用戶訂單數(shù)量”));
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph->title->SetFont(FF_SIMSUN,FS_BOLD);
// Display the graph
$graph->Stroke();
?>

效果圖:

官方網(wǎng)站 http://jpgraph.net/download/  腳本之家下載地址 http://m.fzitv.net/codes/38194.html

相關文章

最新評論

鄂尔多斯市| 怀远县| 措美县| 宁蒗| 若羌县| 临高县| 崇义县| 海兴县| 曲松县| 新余市| 鄯善县| 永城市| 甘孜| 大渡口区| 郴州市| 秀山| 南昌县| 丽江市| 霍林郭勒市| 南雄市| 宿迁市| 炎陵县| 杂多县| 介休市| 曲周县| 呼伦贝尔市| 松滋市| 辰溪县| 东莞市| 石阡县| 富民县| 阿尔山市| 芦溪县| 孟津县| 安丘市| 昭觉县| 萨嘎县| 洛川县| 辛集市| 高雄县| 司法|