insippo

kombi vs ost

Jun 6th, 2023
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. type: custom:apexcharts-card
  2. experimental:
  3. color_threshold: true
  4. graph_span: 24h
  5. header:
  6. title: Börs vs kombineeritud
  7. show: true
  8. span:
  9. start: day
  10. now:
  11. show: true
  12. label: Hetkel
  13. series:
  14. - entity: sensor.nordpool_mwh_ee_eur_3_10_0
  15. name: Kombihind
  16. type: column
  17. color: red
  18. data_generator: |
  19. return entity.attributes.raw_today.map((start, index) => {
  20. return [new Date(start["start"]).getTime(), entity.attributes.raw_today[index]["value"]];
  21. });
  22. - entity: sensor.nordpool_mwh_ee_eur_3_10_02
  23. name: Ostuhind
  24. type: column
  25. data_generator: |
  26. return entity.attributes.raw_today.map((start, index) => {
  27. return [new Date(start["start"]).getTime(), entity.attributes.raw_today[index]["value"]];
  28. });
  29.  
Advertisement
Add Comment
Please, Sign In to add comment