Hi there,
I have a Apexcharts card in place since several months.
Config : HA 2023.7.x on Raspberry PI 4.
Since yesterday (Sunday 29/10 = 1st day in winter time), the card is not able to display data before the daylight saving switch :
Here is the code of the card :
type: custom:apexcharts-card
header:
show: true
title: Production vs Consommation
show_states: true
colorize_states: true
apex_config:
chart:
zoom:
enabled: true
stacked: true
toolbar:
show: true
tools:
zoom: true
zoomin: true
zoomout: true
pan: true
download: false
type: 'y'
autoScaleYaxis: true
reset: true
graph_span: 11d
span:
start: day
offset: '-10d'
show:
last_updated: true
yaxis:
- min: -30
max: 50
decimals: 0
apex_config:
tickAmount: 10
series:
- entity: sensor.total_daily_energy_consumption
name: Consommation grid
type: column
show:
datalabels: false
unit: kWh
color: orange
transform: return Number(x) * -1;
group_by:
func: last
duration: 1d
- entity: sensor.daily_energy_production_kwh
name: Production solaire
type: column
show:
datalabels: false
unit: kWh
color: green
group_by:
func: last
duration: 1d
Using the same data in a history-explorer-card is no issue :
Any hint ?
Thanks !