Searched and couldn’t the solution to these two items. Trying to have all series show up on the tooltip as well as removing the xaxis tooltip. Appreciate it!
Solved removing the x-axis tooltip, needed to put it under the apex_config. Still can’t figure out how to have all series show up in the tooltip though.
Do you see the custom tooltip example Link below that BLUE CUSTOM FUNCTION box?
Click there and you will get this completely indiviual one, but I have no clue if it is possible to do this inside apex Homeassitant HACS integration or not.
I would simply like time and date - followed by the series name and value and an option to show all values of 1 time below each other in a box in the same order as they appear in the legend.
For if you are still having the same issue:
I also struggled with showing all series for the tooltip for quite some time. What finally solved it is grouping on the x-axis. The series most likely have an irregular time interval, thus do not share the same x axis points. (See the note below the example: tooltip – ApexCharts.js)
This can be fixed with the group_by function. Here is my example (only the necessary config):
apex_config:
xaxis:
tooltip:
enabled: false # Disable the x-axis tooltip
tooltip:
shared: true # Share tooltip with all series
intersect: false # Also show tooltip when not hovering exactly on a point
fixed:
enabled: true
position: topLeft
x:
format: HH:mm - HH:mm #Cleaner time formatting
show: true
all_series_config:
group_by: # Fix irregular time for the shared tooltip to work
duration: 5min
func: avg
fill: last
Make sure to set the duration accordingly. Good luck!