
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
