Which chart is suitable for trending with a "Seconds" resolution

Hi,

I want to use Vaadin Charts to display trends for various parameters whoes values are logged in database at some frequency (like 2 secs). I have a db query that returns data under following columns: Timestamp, Parameter1, Parameter2 etc.
I tried using Timeline however it seems like it expects unique values per day.

Which charts would anyone here suggest for displaying trend like this?

Best regards,
Bhartesh

Used Chart(ChartType.LINE) instead of timeline.

.getxAxis().setType(AxisType.DATETIME); did the trick for me :slight_smile: