//forms or databases etc.Such examples are also present.
//Here, we've kept this example very simple.
//Create an XML data document in a string variable
$strXML = "<Chart caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' >";
$strXML .= "<set Label='Jan' value='462' />";
$strXML .= "<set Label='Feb' value='857' />";
$strXML .= "<set Label='Mar' value='671' />";
$strXML .= "<set Label='Apr' value='494' />";
$strXML .= "<set Label='May' value='761' />";
$strXML .= "<set Label='Jun' value='960' />";
$strXML .= "<set Label='Jul' value='629' />";
$strXML .= "<set Label='Aug' value='622' />";
$strXML .= "<set Label='Sep' value='376' />";
$strXML .= "<set Label='Oct' value='494' />";
$strXML .= "<set Label='Nov' value='761' />";
$strXML .= "<set Label='Dec' value='960' />";
$strXML .= "</Chart>";
# Create object of FusionCharts class of single series
$FC = new FusionCharts("Column3D", "600", "300");
# Set Relative Path of swf file. default path is “charts/”
$FC->setSWFPath("../../FusionCharts/");
//Create the chart - Column 3D Chart with data from strXML
# Create the Chart
$FC->renderChartFromExtXML($strXML);
?>
<BR><BR>
<a href='../NoChart.html' target="_blank">Unable to see the chart above?</a>
<H5 ><a href='../default.htm'>&laquo; Back to list of examples</a></h5>
</CENTER>
</BODY>
</HTML>