我正在为我的折线图使用趋势线。但它在我的浏览器中不可见。谁能告诉我原因。下面我给出代码:
<?php
include("Includes/FusionCharts.php");
include("Includes/DBconn.php");
include("Includes/FC_Colors.php");
?>
<html>
<title> Blood Pressure</title>
<head>
<script language="javascript" src="FusionCharts/FusionChart.js"></script>
</head>
<body>
<center>
<?php
//connect to the DB
$link= connectToDB();
$query = "select * from patient_health order by ondate";
$result=mysql_query($query)or die(mysql_error());
//echo $result;
$strXML = "<graph caption='Blood Pressure Reading' subCaption='Month wise' xaxisname='Current Month' yaxisname='Blood Pressure(Systolic/diastole)' yAxisMaxValue='400'
animation='1' rotatenames='1'>";
$categories = "<categories>";
$systolic = "<dataset seriesName='systole'>";
$diaolic = "<dataset seriesName='diastole'>";
while ($row = mysql_fetch_array($result)) {
$categories .= "<category name='" . $row["ondate"] . "' />";
$systolic .= "<set color='AFD8F8' value='" . $row["systole_reading"] . "' hoverText='systolic' />";
$diaolic .= "<set value='" . $row["diastole_reading"] . "' color='FEDCBC' hoverText='diastolic'/>";
}
$strXML .= $categories . "</categories>" . $systolic . "</dataset>" . $diaolic . "</dataset>" . "</graph>";
**$strXML .=" <trendlines>
<line startValue='140' color='91C728' displayValue='Target' showOnTop='1'/>
</trendlines>";**
//$strXML now has the complete XML required to render the multi-series chart.
//Create the chart - Pie 3D Chart with data from $strXML
echo renderChartHTML("FusionCharts/FCF_MSLine.swf", "", $strXML, "BloodPressure", 850, 450,false);
//echo renderChartHTML("FusionCharts/FCF_MSBar2D.swf", "", $strXML, "BloodPressure", 850, 450,false);
?>
</center>
</body>
</html>
我是否正确放置了代码,或者我必须更改它。谁能给我解决方案
提前谢谢你拉姆塞