Can you bold the report title/name?

Ruchi19
Mega Contributor

Is there an option to have the report title font as "bold"?

I have a dashboard pages which contain many reports and I was looking for an option to highlight all the report headings as bold?

Thank you

1 REPLY 1

samiul1
Tera Expert

Hi Ruchi,



I'm not sure if this would be helpful for you but could give you an idea.


I have added a UI-Script (Global= true) to make the publicly published reports' titles bold and bigger :




addLoadEvent(addPublicReportHeader);



function addPublicReportHeader() {


    if($('partialPage:theReport') && !$('reportform_control')) {


          try {


                      var all = document.getElementsByClassName("highcharts-title");


                      for (var i = 0; i < all.length; i++) {


                                    var link = all[i];


                                    link.style.fontSize = '32px';


                                    link.style.fontWeight = 'bold';


                                    link.style.wordWrap = 'break-word';


                      }


          }


          catch (e) {}


    }


}