Y axis auto option

I use variable to filter data from a table, and use the filtered data to draw line chart.
However, the Y axis option seems does not work well. The Y span is so big that details are condensed. How to fine to the Y axis?
image

The Y axis should auto-adjust to your data range by default.

You’ve provided very little information, but my guess is that your query is missing a time range filter, so you’re also querying a bunch of historical data that includes values as low as ~90. If you include a time range filter that only queries data for the selected range, your Y-axis should also be adjusted correctly.

1 Like

Thanks, I got the problem.
I need $__timeFilter(date) in my code

1 Like