Sign in to follow this  
DanL

links not working consistently

Recommended Posts

I'm using the MSColumnLine3D chart. The links are not working consistently. Some columns allow click through while other columns do not, even though they all have link='j-chartDrill(x,y,z)' (see below). This is also happening to me with other charts (Pie3D, Doughnut3D).

 




















Share this post


Link to post
Share on other sites

Hi,

 
I am afraid, (If you are using J-) currently the only way is to pass all javascript parameters as a single parameter, separated by say pipe character, and in the JS function split it to retrieve individual parameters.
You can also use "" instead of "J-", this will work in your current scenario.
 
Example:
 
<chart palette='1' showValues='0' yAxisValuesPadding='10' enableLink='1'>

<categories>

  <category label='4' />

</categories>

<dataset seriesName='ChargeAmt' ><set value='2460740' link="chartDrill('1,2,4')" /></dataset>

<dataset seriesName='ChargeAmtYTD' ><set value='30822237' link="chartDrill(1,2,'4')" /></dataset>

<dataset seriesName='Units' ><set value='244209' link="chartDrill(1,2,'4')" /></dataset>

<dataset seriesName='UnitsYTD' ><set value='3013051' link="chartDrill(1,2,'4')" /></dataset>

</chart>

Share this post


Link to post
Share on other sites

Thanks for the help. Its actually working the same way with "j-" or without. The problem turned out to be a hidden panel that was being rendered over the chart, so the mouseover was not being detected.

Share this post


Link to post
Share on other sites

Hi,
 
I am sorry, my previous post is not appearing correctly as it should be.
However, could you please try using 82ba69b7-dc1e-4990-933f-8a54.png  instead of "J-"?
 
Example:
 
<chart palette='1' showValues='0' yAxisValuesPadding='10' enableLink='1'>

<categories>

  <category label='4' />

</categories>

<dataset seriesName='ChargeAmt' ><set value='2460740' link="82ba69b7-dc1e-4990-933f-8a54.pngchartDrill('1,2,4')" /></dataset>

<dataset seriesName='ChargeAmtYTD' ><set value='30822237' link="82ba69b7-dc1e-4990-933f-8a54.pngchartDrill(1,2,'4')" /></dataset>

<dataset seriesName='Units' ><set value='244209' link="82ba69b7-dc1e-4990-933f-8a54.pngchartDrill(1,2,'4')" /></dataset>

<dataset seriesName='UnitsYTD' ><set value='3013051' link="82ba69b7-dc1e-4990-933f-8a54.pngchartDrill(1,2,'4')" /></dataset>

</chart>

 

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