3 dots on card

Hello Team,

I am using open source BI Helical Insight version 5.2 enterprise edition. I have added some card visualizations to a dashboard. There is interactivity being used (drill down and drill through). When I open the dashboard in new window mode, I notice three dots (ellipsis) icons appearing on the cards. However, these do not show any options when hovered over or clicked, which may confuse users.

Is there a way to remove or hide these three dots so the interface appears cleaner and less misleading?

Refer below image for the same.

image

Thank You,
Netta.

Hello,

Yes , you can remove them by adding below css.
Right click on empty space of dashboard and go to css section and paste below css code snippet

Code :

.hi-content-area-new-window #item-DBR0e ul.ant-menu.ant-menu-root.ant-menu-vertical.ant-menu-light.hi-grid-item-options {
    display: none !important;
}

Here #item-DBR0e is id of the card which is unique to each report. So replace this id with the id of your cards.

You can get the id of reports by right-clicking on the reports and go to css section there you can see a value called Component id that is the id we need to use.

Thank You,
Helical Insight.