Hi - Is it possible to customize tooltips in Grafana? For instance, I have a scatter plot where I’m plotting price vs time for a bunch of information I’m scraping off of a website. However, each datapoint also has Quantity and Title information, which I would like to display in the tooltip. Is this possible?
Any updates on custom tooltip data?
I’m sending a response from Flask with jsonify as such:
data = [{
…
‘datapoints’: [
[x1,y1],
[x2,y2],
…
]}]
and i’d like something like this:
data = [{
…
‘datapoints’: [
[x1,y1,‘tooltip’:‘customTooltip1’],
[x2,y2, ‘tooltip’:‘customTooltip2’],
…
]}]