Stacking "Bar" and "Line" series with same x-value

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”


Schermata da 2021-02-01 09-38-54

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

Anyone have an idea?

This topic was automatically closed after 365 days. New replies are no longer allowed.