cancel
Showing results for 
Search instead for 
Did you mean: 

tooltip for KPI tiles in SAP UI5

0 Kudos

kpitiles.pngHi

I have a usecase to display a tooltip for KPI's in SAP UI5. We are using a generic tile with tile content and numeric content to display the KPI's. However, I didn't find any 'tooltip' property to display content on hover of the tile.

Please note that I would want to display additional information in the tooltip apart from the tile's content.

Please suggest.

former_member182862
Active Contributor
0 Kudos

generic tile already has tooltip

https://jsbin.com/widutiv/edit?js,output

are you think of change the tooltip that is generated by this control?

Thanks

-D

0 Kudos

Hi Dennis,

Currently we have a generic tile with tile content and numeric content to display the KPI's inside a header container. Somehow the default tooltip is not visible by default.

But yes, we want to change the default tooltip content to show different data. Say the tile represents the metrics in percentage that show difference from last week. So, in the tooltip we would want to show the actual values from last week and current week for user readability.

Kindly help

0 Kudos

Hi Dennis,

Any inputs on the same?

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member182862
Active Contributor

I believe that you can see tooltip to the control. e.g

  var oTile = new GenericTile2({
    header: "Country-Specific Profit Margin",
    subheader: "Expenses",
    tooltip: "test",
    tileContent: [ ...]
  });

sorry for the delay.

Dennis