Stacked bar graph

Hello,
I am trying to find a way to have a graph in a form of “stacked” bars or lines to represent how each sensor contributes to the overall value.

A tipical use case is this:
1 - one sensor representing the consumption from the grid
2 - one or more sensor representing the various appliances
3 - one template sensor that represent “other” obtained by doing 1-2

I would be able to graph the sensors 2(one for each appliance) and 3 in a stacked form:


or:

Is there any way to obtain this with an existing card? or with a 3rd party one?

Thanks

1 Like

I’m pretty sure apexcharts-card can do it with stacked: true.

Unfortunately not.

Stacked: true only causes separated graphs to be shown on the same graph. But the entities are not stacked into one bar or curve. They are still shown as separate bars (besides each other).

It seems to stack entities into a single bar.
Without stacked: true:

With stacked: true:

1 Like

@onstra12345 Could you please share your code, how you managed to have stacked the bars using multiple entities?
I’m trying and trying, but I’m unable to get it to work unfortunatly.

A simple example:

type: custom:apexcharts-card
graph_span: 7d
stacked: true

series:
  - entity: sensor.kotlik_gas_flow_heating_integral
    type: column
    group_by:
      func: diff
      duration: 1d
      start_with_last: true
  - entity: sensor.kotlik_gas_flow_dhw_integral
    type: column
    group_by:
      func: diff
      duration: 1d
      start_with_last: true

image

3 Likes

type: custom:apexcharts-card
apex_config:
  chart:
    stacked: true
  xaxis:
    labels:
      format: dd
  legend:
    show: false
graph_span: 7d1s
span:
  end: day
show:
  last_updated: false
header:
  show: true
  show_states: true
  colorize_states: true
  title: 每月流量
series:
  - entity: sensor.sensor2me_4gcard1
    name: 特斯拉4G卡流量
    type: column
    unit: ' MB'
    color: darkviolet
    group_by:
      func: max
      duration: 1d
    show:
      datalabels: true
  - entity: sensor.sensor2me_4gcard2
    name: 车库4G卡流量
    type: column
    unit: ' MB'
    color: orangered
    group_by:
      func: max
      duration: 1d
    show:
      datalabels: true
style: |
  ha-card {border-radius: 29px; border: 0.2px solid teal }

6 Likes

Thank you! Very informative… :slight_smile:

Somoene have an idea to have this result :

I would like to know this as well. I wasn’t able to acomplish it. In my case, I would like to have a stacked bar graph showing the energy usage and two line graphs on top showing the produced solar energy and the energy coming from the battery. Unfortunately the two line graphs are stacking as well.
Does anyone have a solution for this?

image

Looking to achieve the same thing as shown in the linked example.

So it seems it is possible in the Apex Charts documentation.

A couple of points though. Remember it’s stacked AREA, not LINE. So you need to make sure your type is set to area

Here’s how mine looks:


^^ Note in the above that the point highlighted shows the TV is using ~73W, and the Internet plug ~28W - and the axis on the left shows it to be above 90W - so that makes sense for stacked.

Smaller example:
image

…and here’s the YAML:

type: custom:apexcharts-card
graph_span: 1h
update_interval: 10min
apex_config:
  tooltip:
    enabled: true
    shared: true
    x:
      show: true
      format: dddd - H:mm
    fixed:
      enabled: true
      position: topRight
header:
  show: true
  title: Power
  show_states: true
  colorize_states: true
all_series_config:
  stroke_width: 2
  type: area
  unit: W
  opacity: 0.5
  group_by:
    func: avg
    duration: 1m
series:
  - entity: sensor.dish_washer_plug_current_power
  - entity: sensor.washing_machine_plug_current_power
  - entity: sensor.tv_plug_current_power
  - entity: sensor.internet_plug_current_power
stacked: true

I’ve applied AREA to all_series_config so it applies to all entities, rather than have to do it separately, which would look like the below otherwise (snippet):

series:
  - entity: sensor.dish_washer_plug_current_power
    type: area
  - entity: sensor.washing_machine_plug_current_power
    type: area
  - entity: sensor.tv_plug_current_power
    type: area
  - entity: sensor.internet_plug_current_power
    type: area

I’m looking for a slightly more complicated example. Two stacked additive areas, one substractive area and one non-stacked line, all into the same chart. Does anyone know if this is possible?

stacked+: inverter0_battery_voltage * inverter0_battery_charging_current
stacked-: inverter0_battery_voltage * inverter0_battery_discharge_current
stacked: inverter0_ac_output_apparent_power
line: inverter0_pv_charging_power