I currently am using the php class to render my fusion chartl
...
$chart->setSWFPath("/FusionCharts/");
$strParam="caption=something;xAxisName=Days;enableSmartLabels=0; showvalues=0; formatNumberScale=0;";
$chart->setChartParams($strParam);
return $chart->renderChart(0,0);
I would like to change the default message: "No data to display" to something more specific when there is no data.
How do I do this using the PHP class?
Thanks