Hello Team,
I am using Helical Insight 3.1 EE. I have created few dashboards, however the dashboard when exported they are having filters also in the PDF export. I would like that to be removed.
Please refer to below image
Thank You
Vetegoc.
Hello Team,
I am using Helical Insight 3.1 EE. I have created few dashboards, however the dashboard when exported they are having filters also in the PDF export. I would like that to be removed.
Please refer to below image
Thank You
Vetegoc.
Hello Vetegoc,
This can be easily handled using CSS. You can add the below kind of CSS in styles.css file
@media print {
.hi-parameter-component{
display:none !important;
}
}
Here we have identified the Class responsible for input parameter and written logic that it should not be displayed whenever a person clicks on export. Similarly, another kind of logic can also be written and this CSS will also get executed additionally whenever a person clicks on PDF export.
The path of the CSS file is “…hi\apache-tomcat-7\webapps\hi-ee\css”
Thank You
Team Helical.