我已经使用 phpGraphlib 成功创建了一个折线图。但我不知道如何使用这个库绘制多线图。xy 值存储在此处的数组中。我的代码在这里
<?php
include("phpgraphlib.php");
$graph=new PHPGraphLib(1000,1000);
include("db_connect.php");
$dataArray=array();
$graph_array=array();
$sql="SELECT name,mark1,mark2, entered_time FROM student ";
$result = mysql_query($sql,$con) ;
if ($result) {
while ($row = mysql_fetch_assoc($result)) {
$without_comma_value=explode(',', $row['mark1']);
$count=count($without_comma_value);
for($i=0;$i<$count;$i++)
{
$Val_onebyone= $without_comma_value[$i];
$num=$i+1;
$dataArray[$num]=$Val_onebyone;
}
}
}
$graph->setBackgroundColor("#F78181");
$graph->addData($graph_array);
$graph->setBars(false);
$graph->setLine(true);
$graph->setupYAxis(20, 'black');
$graph->setupXAxis(20, 'black');
$graph->setTextColor('black');
$graph->setDataPoints(true);
$graph->setDataPointColor('maroon');
$graph->setLineColor('maroon');
$graph->createGraph();
?>
它绘制带有 mark1 值的图形。我也想显示 mark2 值。怎么可能?