cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Geo Map tooltip formatting with CSS

former_member184594
Active Contributor
0 Likes
1,867

Hello,

I am trying to format the tool tip of geo map component with CSS. I am able to do that, but I just want to hide value on the tooltip.

I am using the following CSS tag for this:

.myMap .sapzengeomap-tooltip .sapzengeomap-value {
	color: indianred !important;
}

I am using Design Studio 1.6.

Thanks,

Zahid.

View Entire Topic
arijit_das
Active Contributor
0 Likes

For Lumira 2.x Designer:

To hide the value in tooltip:

.myMap .v-tooltip-dimension-measure tr:nth-child(1){
    visibility : hidden;
}

To change the color of the value only:

.myMap .v-tooltip-dimension-measure tr:nth-child(1)> td:nth-child(2){
    color : blue !important;
}