Lines joining in line graph - canvas

Hello,

I seem to be getting some strange behaviour in canvas line graphs. When I do an elastic SQL for 30 days my chart looks like this:
graphy

My sql looks like this:

SELECT * FROM index WHERE QUERY('name:Splinter') AND date > TODAY() - INTERVAL '30' DAYS

Hey @samgs, can you post the expression as well?

Hi @tims,

Something really odd going on here.

filters
| essql
query="SELECT * FROM index WHERE QUERY('name:Splinter') AND date >= TODAY() - INTERVAL '30' DAYS"
| pointseries x="date" y="sum(data)"
| plot defaultStyle={seriesStyle lines="1" bars="0"} xaxis=false yaxis=true
| render

Hey @samgs, that is odd, nothing that I can see in the query or expression that would cause that. Have you tried reducing or changing the date range? Maybe it's trying to render some wonky data.

Fixed this, noticed that the data wasnt being ordered by date.

Thanks for your help

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.