DanL Report post Posted February 3, 2009 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
Rahul Kumar Report post Posted February 4, 2009 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
DanL Report post Posted February 4, 2009 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
Rahul Kumar Report post Posted February 5, 2009 Hi, I am sorry, my previous post is not appearing correctly as it should be. However, could you please try using 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="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