jami

How To Set A Picture On Highlight Selective Data?

Recommended Posts

I use StackedColumn2D on my charts.

I want to make out the following example:

http://sharecapture....9b653e7a7bc582e

post-27499-0-24360500-1329619928_thumb.jpg

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 by jami

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now