Hi, can you go into your query view and view the underlying SQL for your table? I see you have a column called “datetime”. You may have to alias this in your SQL to “time”. If your query was something like:
SELECT datetime FROM mytable;
Change it to:
SELECT datetime as "time" FROM mytable;
Also check whether your panel is formatted as a “Time series” or a “Table”. I think that “Table” is the option that you want. I hope this helps?