cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Hide Dashboard Title

rahuldhomane
10 - ETL
10 - ETL

Is there a way to hide the dashboard title?

Regards,

Rahul D

1 ACCEPTED SOLUTION

Angelina_QBeeQ
10 - ETL
10 - ETL

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

View solution in original post

2 REPLIES 2

Angelina_QBeeQ
10 - ETL
10 - ETL

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

Thank you so much @Angelina_QBeeQ !