For example, if I have a Postgres table with columns for sensor_id, temperature and time_recorded , would I still be able to generate a chart that shows temperature (y) over time (x) ?
Asked
Active
Viewed 322 times
1 Answers
1
Yes, that's possible with 2 steps:
- defining a data schema for that table.
- define a query to get data from that data schema.
after retrieving the data you can feed it to the chart library of your choice.

Kaizendae
- 853
- 11
- 24