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.
Request clarification before answering.
To hide the value in tooltip:
.myMap .sapzengeomap-tooltip-content tr:nth-child(2) {
visibility:hidden;
}
To change the color of the value only:
.myMap .sapzengeomap-tooltip-content tr:nth-child(2)>td:nth-child(2) {
color: blue !important;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.