Viva,
É possivel colocar os valores do kWh nas barras verticais? Já tentei ver atraves da documentação mas nao consegui de maneira nenhuma.
type: entities
title: Consumo energético (últimos 12 meses)
entities:
- type: custom:chartjs-card
chart: bar
entity_row: true
data:
datasets:
- backgroundColor: >-
${ c => {var bg = c.chart.ctx.createLinearGradient(0,0,0,600);
bg.addColorStop(0, "lightgreen"); bg.addColorStop(1, "blue"); return
bg;} }
borderColor: >-
${ c => {var bg = c.chart.ctx.createLinearGradient(0,0,0,600);
bg.addColorStop(0, "lightgreen"); bg.addColorStop(1, "blue"); return
bg;} }
borderWidth: 1
borderRadius: 2
data: ${states["sensor.energy_last_12_months"].attributes.data}
strokeColor: '#79D1CF'
fillColor: '#79D1CF'
label: Eletricidade
labels:
- Janeiro 2022
- Fevereiro 2022
- Março 2022
- Abril 2022
- Maio 2022
- Junho 2022
- Julho 2022
- Agosto 2022
- Setembro 2022
- Outubro 2022
- Novembro 2022
- Dezembro 2022
options:
scales:
yAxes:
- ticks:
beginAtZero: true
plugins:
title:
display: true
text: >-
${"📅 Mês Corrente: " +
states["sensor.energy_shelly_em_casa_monthly_total"].state + "
kWh | 📅 Hoje " +
states["sensor.energy_shelly_em_casa_today"].state + " kWh" }
custom_options:
showLegend: false
Algo identico a isto: