Can you bold the report title/name?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2015 12:10 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-18-2016 02:48 PM
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) {}
}
}