Only half name of the report/dashboard appears

Hello Helical Insight,

Hello, I am using helical insight 4.1 GA. What I have seen that the name of the report/dashboard gets cut and only few characters appear. Is there a way to modify the same. Please refer to the below to understand what I am talking about

image

Thank You,
Snow.

Hello Snow,

This has been designed in such a way so that even if a person views it on a smaller device like tablet or mobile it remains only one blue band. If you increase the no of characters then in order to show in a small screen the blue band height will increase. So ideally it is not recommended. Though the steps are mentioned below

Open the file newWindowMenu.jsp present at the location .…\hi\apache-tomcat-9\webapps\hi-ee\WEB-INF\jsp\report

In that file you can see the below code

image

Replace the line 4 to line 7 with the below code

< ul class=“nav navbar-nav”>

< h4> ${data[0].title} < /center>< /b>< /h4>

< li id=“hi-cache-fileTitle”>

< !-- < a id=“hi-fileTitle” data-tip="${data[0].title}">${data[0].title} -->

< /li>

< /ul>

Then we need to refresh the dashboard URL ( server restart is not required)

image

Thank You,
Helical Insight.

Also if you want to completely remove the report name from the top blue navigation bar, in the file newWindowMenu.jsp you can simply delete the ${data[0].title}, save it and then check in private window. It will not appear.

Below we are highlighting in yellow color exactly the content which should be deleted
image