There's no proper documentation for LiveCharts and I really don't know how to start with this. I have a SQL query to return a result like this:
| Date | TotalReservation |
|----------|------------------|
|2021-06-05| 3 |
|2021-06-06| 2 |
|2021-06-07| 3 |
|2021-06-08| 4 |
|2021-06-09| 0 |
I intend to create a Line Series in Winforms using the data above. I am really new to C#, and reading this documentation https://lvcharts.net/App/examples/v1/WinForms/Line does not really provide me with any guide to achieve the result. YouTube tutorials are mostly for Column Series and limited tutorial on Line Series.
Any help would be greatly appreciated. Thank you.