How can I change the time range to 1s or 500ms?

How can I change the time range to 1s or 500ms?
At present, the minimum interface can only be past 1min. I want to achieve past 1s or past 500ms.


x axis range

Hello @leo1,
You can’t with the UI in a dashboard,
You can however go into the cells and place a custom start and stop time.

|> range(start: -500ms, stop: now())

You can also take advantage of variables to make this easier:

|> range(start: v.sub_second, stop: now())