Hello,, 
  
I am using FUSIONCHARTS API PHP CLASS... 
on using setChartParam or setChartParams .. it works with some attributes, and doesn't work with many others.. 
works with things like: caption, subCaption, xAxisTitle  
doesn't work with palette colors, borders, and most of attributes ... 
  
my code is like this: 
  
 
       $strParam = "paletteColors=FFFFFF;caption=hamada1;interactiveLegend=0;showValues=0;bgColor=f2fec0;showPlotBorder=1";
       $this->load->library("FusionCharts");
       $FC = new FusionCharts("MSColumn3D", "1000", "300", "a2", "opaque");
       $FC->setSwfPath("./media/charts/");
       $FC->setChartParams($strParam);
 
  
  
  
I really can't understand the problem and now I am not able to make any customization to the chart ... 
Is there any help ??