Forum Discussion

rahuldhomane's avatar
10-20-2022
Solved

Hide Dashboard Title

Is there a way to hide the dashboard title? Regards, Rahul D
  • Angelina_QBeeQ's avatar
    10-21-2022

    Hi rahuldhomane ,

    Try this script:

    dashboard.on('refreshend', function(d, args) {
    
    $('.toolbar-breadcrumbs').css('display','none','important');
    })
    
    dashboard.on('refreshstart', function(d, args) {
    
    $('.toolbar-breadcrumbs').css('display','none','important');
    })
    

    Best regards, 
    Angelina