Controlling Export Options for Individual Charts in Helical Insight

Hello Helical Insight Team,

I am using open source BI helical insight version 6.0. At the dashboard level on the top blue bar couple of exporting options are visible Excel, CSV, PDF.

Can we selectively control or customize export options (like CSV, Excel, PDF) for individual panels at dashboard level in Helical Insight?

Thanks,
Netta.

Hello Netta,

It is possible to hide export options using dashboard-level CSS. This will apply for all panels of the dashboard.

Right Click on Empty space and hover on advance go to css.

image

Updated CSS:

[data-menu-id$=“excel”] {
display: none !important;
}
[data-menu-id$=“csv”] {
display: none !important;
}
[data-menu-id$=“pdf”] {
display: none !important;
}

Thank You,
Helical Insight Team.