Hi Support,
We have an existing Reporting Services 2005 Report with an embedded Nevron floating bar chart. The user is able to jump to another report by clicking on the corresponding bar they would like to see more detailed data for. However, not all the bars should be able to jump to another report. We want to amend the report to either enable or disable the ‘Action –> Jump to another report’ based on the value of a particular data item in the underlying dataset.Is it possible to do this in a programmatic manner? If so, how could this be achieved?Attached is a word document with more details, as well as the chart configuration file.
Regards,
Zeljka.
Hi Brian,
You can access the value of individual bars using something like:
double barValueAtIndex = (double)bar.Values[someIndex];
which gives you the value of the bar at index "someIndex".
Regarding the tooltip - all of the above interactivity attributes have a property called "Tooltip" which allows you to specify a tooltip for the object the interactivity is attached to.
Best Regards,Nevron Support Team