cancel
Showing results for 
Search instead for 
Did you mean: 

Disabling context menu on charts?

0 Kudos
289

Hi,

is it possible to disable the context menu on charts in lumira designer?
I only found the solution to disable interactive mode, but then i didn't get the values on click or mouseover.
With the following css I was able to disable all context menus (charts, table, navigation panel,...):

.sapUiMnu { visibility: hidden !important; }

But then I am not able to filter measures in the navigation panel.
So is there a way to disable the context menu by components?
In my case I would like to disable interactivity on charts (except the value highlighting) but having the possibility to filter measure in the navigation panel (right click - filter).

Thanks in advance and best regards

Christoph

View Entire Topic
dougwood_sb
Explorer
0 Kudos

Hi Christoph


Most chart menus don't have a submenu, so you can use this class to hide them:

.sapUiMnuNoSbMnu {display: none !important;}

The context menu on the nav panel and crosstabs have a submenu so you will see this class after the menu div (div>ul)

.sapUiMnuLst

I hope this works for you.

Best

Doug