Forum Discussion

Kade's avatar
Kade
Data Storage
08-15-2024
Solved

Turning off click to filter on Widget

Hello everyone, Is it possible to disable the functionality that allows users to click on the legend in the widget to filter data? Currently, when a legend is clicked to filter out a category, it d...
  • AssafHanina's avatar
    08-20-2024

    Hey Kade 

    Please try to use the following widget script to disable the Clickable Legend. 
    the Script disable the pointer events such as click. 

    widget.on('ready', function(se, ev){
    // Disable pointer events to make the legend unclickable
    $('.highcharts-legend').css('pointer-events', 'none');
    });

    Best Regards