//設(shè)置統(tǒng)計(jì)圖的顏色 一定要在添加到畫(huà)布之后再設(shè)置
$linePlot->SetColor('red');
test.php
$graph = new Graph(600, 400);
/**
* lin直線(xiàn)
* text文本
* int整數(shù)
* long對(duì)數(shù)
* textint
*/
$aAxisType = 'textint';
$graph->SetScale($aAxisType);
//設(shè)置統(tǒng)計(jì)圖的標(biāo)題
$graph->title->Set('this is a test');
$data = array(0 => 10, 1 => 20, 2 => 30, 3 => 40, 4 => 50, 5 => 12, 6 => 38, 7 => 55, 8 => 100,
9 => 120, 10 => 30, 11 => 54
);
$linePlot = new LinePlot($data);
//設(shè)置圖例
$linePlot->SetLegend('tuli');
//將統(tǒng)計(jì)圖添加到畫(huà)布上
$graph->Add($linePlot);
//設(shè)置統(tǒng)計(jì)圖的顏色 一定要在添加到畫(huà)布之后再設(shè)置
$linePlot->SetColor('red');
$graph->Stroke();
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者