Hi everyone,
I followed another topic in order to insert two data series in the same panel: one in bar and the other in line.
Below steps:
Custom query:
SELECT
now() as time,
name,
AVG(average_time),
MAX(average_time)
FROM _average_time
WHERE average_time > 0
GROUP BY 1,2
ORDER BY 2
Using the “Series overrides”
Result:
Points (Line type after stacking options is enabled) are separated of bars, I would like them to be on top of the bars, so merge x axis with unique values.
I tried with “overrides” tab, but it remove only a part of the label: without merge data.
Thanks to all,
Kevin