I have a GeoMap panel in Grafana that uses the Infinity datasource to display location data from an API whose response is like:
[
{
“id”: 1,
“latitude”: 17.09677,
“longitude”: 78.31115,
“name”: “HYDERABAD”
}
]
All these details are visible in location marker tooltip as shown in the image.
I’ve set up a data link on these locations to redirect to another dashboard with the URL /d/ddssk8owc/plants-overview?orgId=1&var-Plant=${__data.fields.id}
, passing the id
field , this id will be required on the other dashboard. However, I want to hide the id
field in the tooltip but still use it in the data link. How can I achieve this?
Basically my requirement was I need to send the Id of the selected plant/location to another dashboard but I don’t want to show it on UI or in tooltip.