Graph x and y coordinates

How to make a graph from the coordinates seen in the image? The following SQL query is used: SELECT x as x, y as y FROM xy order by x;

You should specify a time column in the Query Editor or for raw queries:

be sure your query at minimum has ORDER BY time and a filter on the returned time range.

This is an example query:

SELECT
  $__timeGroup(time_date_time,'5m'),
  min(value_double),
  'min' as metric
FROM test_data
WHERE $__timeFilter(time_date_time)
GROUP BY time
ORDER BY time

For more details check the PostgreSQL, MySQL and SQL Server documentation

So if I understand it correct the graph panel is time dependent and it is not possible to show data which is not time dependent?