feat(web-app): new components to manage the plots

This commit is contained in:
fastium
2025-05-13 09:26:12 +02:00
parent a059c659fc
commit e13170ed1b
3 changed files with 33 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ export class TimeSeriesManager {
return this.client
.getValues(user, room, device)
.then((response) => {
console.log(response);
const serie_temperature = new Serie(
TEMPERATURE,
response.data.filter((x: any) => x[TYPE] === TEMPERATURE),