Hello,
I create a time-series-chart out of an InfluxDB database. In the example picture below I marked three points that all have the same y-value but the position on the y-axis is different. I expected a horizontal line for these three points.
Here is the InfluxDB query:
from(bucket: “Hive”)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r[“_measurement”] == “mqtt_consumer”)
|> filter(fn: (r) => r[“_field”] == “value”)
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
|> yield(name: “mean”)
What is the reason for that?
Thanks