Slicer magnifying glass


#1

I am using the Slicer component and my users like the magnifying glass on the header to narrow down the slicer options. However, the magnifying glass only shows when users hover on the header. Is there a way to always have it “on”?

Thanks!


#2

Hi @Jack,

Yes, just set the “showSearch” option to true and the search icons will always be “on”. Example:

cf.provider("My Data Provider")
    ...
    .graph("Slicer")
    .set('showSearch', true) 

Follow this link for more information on this topic.