Web Dashboards do not raise the ItemClick event when an end-user clicks an empty space in Chart or Pie items. This event is raised when an end-user clicks a data element in an item, for instance, series points, bars, or series names in the legend.
As a workaround, it is possible to access an inner widget by using the approach from Access to Underlying Widgets and handle this widget's root HTML element click event.
For example, you can use the following code for chart items:
JavaScriptif (args.ItemName == "chartDashboardItem1") {
var chart = args.GetWidget();
chart.element().click(function () {
alert("Click Executed");
});
}
This provided exactly the solution that I needed to solve a problem. Thank you guys!