Sign in to follow this  
1aman11

Drill down charts dont take the chart inputs as specified

Recommended Posts

I am rendering a fusion line chart that has a drill down capability. I am creating a big XML for the whole chart that has drill down ability based on id based.

However, while I am trying to provide the cosmetics for the charts, the things are not getting passed as desired. Folow shos how i am approcahing this

 

First main chart

$arrData = array(         
"NumberSuffix"=> "%",       
         "interactivelegend"=> "1",        
         "palettecolors"=>"#0000FF,#006400",
            );
foreach ($arrData as $key => $value) {
                    $chart->addAttribute($key,$value);
}
 
First drill down  chart
$linkeddata->addAttribute('id',($arr[0]));
 
$arrData = array(         
/"NumberSuffix"=> "%",       
         "interactivelegend"=> "1",        
         "palettecolors"=>"#0000FF#,006400",
            );
foreach ($arrData as $key => $value) {
                    $chart->addAttribute($key,$value)
 
}
 
Everything is working fine with the chart, except that in the drill down charts $arrdata is not able to make changes. When the first chart show '% 'suffix, drill down chart don't. The first main chart follow palette colors but subsequent charts don't.
 
Suggestion are most welcome.
 
Regards,
Aman.
 

Share this post


Link to post
Share on other sites
Hello,

 

Thanks for the query.

 

Kindly send the scaledown sample, so that we can replicate the issue for further assistance.

 

For a workaround you can check out the sample of drill down chart (JSON) using php and MySQL provided below.


 

Hope this helps,




Thanks,

Prerana Singh



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
Sign in to follow this