jami Report post Posted February 19, 2012 (edited) I use StackedColumn2D on my charts. I want to make out the following example: http://sharecapture....9b653e7a7bc582e Whether which side I need to modify? It's my code : for($t=0; $t<count($price2); $t++) { if(($t%$num)==0){ $FC->addCategory($price2[$t], "showName=1"); }else{ $FC->addCategory($price2[$t], "showName=0"); } } for($k=0; $k<11; $k++) { $FC->addDataset($numList[$k],"color=" . $color[$k]); for($t=0; $t<count($price2); $t++) { if(!is_null($BS2[$t][$k]) and $BS2[$t][$k]!=""){ $b = $BS2[$t][$k]; }else{ $b = 0; } $FC->addChartData($b ); } } Edited February 19, 2012 by jami Share this post Link to post Share on other sites
Guest Sumedh Report post Posted February 20, 2012 Hi, please refer the following forum link for the solution: http://forum.fusioncharts.com/topic/11244-how-to-set-a-picture-on-highlight-selective-data/page__pid__43889#entry43889 Hope you have a great day. Share this post Link to post Share on other sites