I use apex chart to display history of my download usage per day.
But if i check why today data is incorrect, we can see the value is 494 for download based in this picture
but the sensor return around 440
and here my config
type: custom:apexcharts-card
graph_span: 7d
span:
end: day
header:
title: Data Transferred
show: true
all_series_config:
stroke_width: 2
type: column
update_interval: 1m
series:
- entity: sensor.fw_rx_bytes
name: Download
color: green
group_by:
func: max
duration: 1d - entity: sensor.fw_tx_bytes
name: Upload
color: blue
group_by:
func: max
duration: 1d


