Sign in to follow this  
chandrah88

Drill down doesnt show in Bar 3d chart

Recommended Posts

Hi ,

We have a drill down Bar 3d graph in a <DIV> tag . On click of a  button we hide this <DIV> and show another <DIV> with a tabular data  like this

if

(document.getElementById(namespace+'gridbox1').style.display == 'block'){

document.getElementById(namespace+

'gridbox1').style.display = 'none';

document.getElementById(namespace+

'graphDiv').style.display = 'block';

}

else{

document.getElementById(namespace+

'gridbox1').style.display = 'block';

document.getElementById(namespace+

'graphDiv').style.display = 'none';

}

Again on click of this toggle button we show the DIV containing the graph , but the drill down option does not appear .

This happens only for Bar 3d chart and other charts seem to work fine . Is there anything i need to follow for Bar 3D chart .

Please help,

Thanks

Chandra

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