I’m trying to use FusionCharts embeded into JAOlivine template, but I can’t see any result.
I’m using just an example which it works in other sites:
include (“graphs/graphs.inc.php”);
include (“FusionCharts/Includes/FusionCharts.php”);
//This page demonstrates the ease of generating charts using FusionCharts.
//For this chart, we’ve used a string variable to contain our entire XML data.
//Ideally, you would generate XML data documents at run-time, after interfacing with
//forms or databases etc.Such examples are also present.
//Here, we’ve kept this example very simple.
$strXML = “<chart bgColor=’F5F5F5′ showValues=’1′ formatNumber=’0′ formatNumberScale=’0′ showYAxisValues=’0′ showBorder=’0′ yAxisMinValue=’1600′>”;
$strXML .= “<set label=’2006 January’ value=’2105′ />”;
$strXML .= “<set label=’2006 July’ value=’2187′ />”;
$strXML .= “<set label=’2007 January’ value=’2341′ />”;
$strXML .= “</chart>”;
echo renderChartHTML(“FusionCharts/Column3D.swf”, “”, $strXML, “myNext”, 300, 200, false);
Do you know if it exists some problem in using FusionCharts with JAOlivine?
Thanks in advance
Ricard