kalkih / mini-graph-card

Minimalistic graph card for Home Assistant Lovelace UI
MIT License
3.07k stars 238 forks source link

[FR] Show all entities values and names in one line #1166

Closed pskowronek closed 2 weeks ago

pskowronek commented 2 weeks ago

Great card! However, I've tried to use it to accommodate 3 entities in one graph along with their current values: PM 2.5, PM10 and HCHO (air quality readings).

So far I was only able to achieve this: image

What I would like is something like this:

image

i.e.:

My config so far:

type: custom:mini-graph-card
entities:
  - entity: sensor.pm10
    name: PM10
    show_state: true
    show_indicator: true    
  - entity: sensor.pm2_5
    name: PM2.5
    show_state: true
    show_indicator: true
  - entity: sensor.hcho
    name: HCHO
    show_state: true
    show_indicator: true
hours_to_show: 24
points_per_hour: 5
animate: false
line_width: 2
group: false
smoothing: false
show:
  legend: false
  labels_secondary: false
  name: false
  icon: false
  extrema: false
  fill: false
hour24: true
ildar170975 commented 2 weeks ago

You may find workaround here: https://github.com/kalkih/mini-graph-card/issues/679 Also, similar: https://github.com/kalkih/mini-graph-card/issues/1081

Will close this issue as a duplicate.