Hello FusionChart experts,
Could some one help me displaying "MSColumn3DLineDY" chart. values should be queried from Database.
Below is is what i have done
$strQuery = "Select ID,userid,CourseID,Marks,StudCatID from studperf
where userid = '$UID' order by CourseID";
$result = mysql_query($strQuery) or die(mysql_error());
if ($result) {
$FC->$UID->addDatasetsFromDatabase($result, "CourseID", "Marks;");
}
mysql_close($link);
$FC->$UID->renderChart();
ant i have attached the output screen of above code(query.jpg) and I also attached the required type of graph screen shot(needed.jpg) as well.
Please help me how to get the above said graph and data should populate from database.
Thanks,
Naveen