You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to ApexCharts so be patient with me.
I'm trying to build an area chart that displays the value of 3 temperature sensors in a serie but i must be doing something wrong cause it's behaving erratic. I want their values to be shared in the tooltip, but with my current config when one of the 3 entities updates, the other two seem to fall out of sync and don't fill the chart from the beginning anymore, like the one that just updated, causing the tooltip not to share their values anymore.
Funny thing... when i go into editing mode it seems to display and behave as it should.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everyone.
I'm new to ApexCharts so be patient with me.
I'm trying to build an area chart that displays the value of 3 temperature sensors in a serie but i must be doing something wrong cause it's behaving erratic. I want their values to be shared in the tooltip, but with my current config when one of the 3 entities updates, the other two seem to fall out of sync and don't fill the chart from the beginning anymore, like the one that just updated, causing the tooltip not to share their values anymore.
Funny thing... when i go into editing mode it seems to display and behave as it should.
`type: custom:apexcharts-card
header:
show: true
title: Temperature [°C]
graph_span: 30min
update_interval: 10sec
chart_type: line
apex_config:
xaxis:
type: datetime
stroke:
show: true
width: 1.5
curve: straight
chart:
type: area
fill:
type: gradient
gradient:
shadeIntensity: 0.5
opacityFrom: 0.45
opacityTo: 0.25
inverseColors: false
stops:
- 0
- 90
- 100
series:
name: Extruder
color: rgb(255, 51, 51)
group_by:
func: last
duration: 1sec
show:
legend_value: false
name: Heater bed
color: rgb(51, 153, 255)
group_by:
func: last
duration: 1sec
show:
legend_value: false
name: Rpi
color: rgb(255, 51, 255)
group_by:
func: last
duration: 1sec
show:
legend_value: false`
Beta Was this translation helpful? Give feedback.
All reactions