Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Michal_Two
Contributor

Tooltip for action button

Hello,

i made two action buttons and put them into multi kpi object using drag and drop method. I create measure and put only(text()) functions, when i hover my cursor on button, tooltips are vissible. It work like you can see but scrollbar shows on and i have no idea how to remove it. It's any possible for delete it in styles? Any ideas?

Michal_Two_0-1680341498180.png

Michal_Two_1-1680341870629.png

 

 

Labels (3)
1 Solution

Accepted Solutions
Michal_Two
Contributor
Author

I found solution for remove scrollbar i used developer tools in chrome and put code to Styles CSS in Multi Kpi object.

.qv-object-qsstatistic .top-aligned-items {
height: 110%;
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-end;
overflow: auto;
}

Finaly result

Michal_Two_0-1680508310894.png

 

View solution in original post

1 Reply
Michal_Two
Contributor
Author

I found solution for remove scrollbar i used developer tools in chrome and put code to Styles CSS in Multi Kpi object.

.qv-object-qsstatistic .top-aligned-items {
height: 110%;
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-end;
overflow: auto;
}

Finaly result

Michal_Two_0-1680508310894.png