Advertisement
tlse72

Untitled

Aug 26th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.16 KB | None | 0 0
  1. type: custom:apexcharts-card
  2. now:
  3.   show: true
  4.   label: Nu
  5.   color: '#ffc0cb'
  6. locale: sv
  7. header:
  8.   show: true
  9.   title: Elpris | 2 Dagar
  10.   show_states: true
  11.   colorize_states: true
  12. graph_span: 2d
  13. yaxis:
  14.   - min: ~0
  15.     apex_config:
  16.       forceNiceScale: true
  17. span:
  18.   start: day
  19. apex_config:
  20.   legend:
  21.     show: false
  22.   xaxis:
  23.     labels:
  24.       format: HH
  25.       show: true
  26.       rotate: -45
  27.       rotateAlways: true
  28.       hideOverlappingLabels: true
  29.       style:
  30.         fontSize: 10
  31.         fontWeight: 10
  32. series:
  33.   - entity: sensor.nordpool_kwh_se3_sek_3_10_025
  34.     name: Idag
  35.     data_generator: >
  36.      return entity.attributes.raw_today.map((entry) => { return [new
  37.       Date(entry.start), entry.value]; });
  38.     type: column
  39.     float_precision: 2
  40.     offset: '-1ns'
  41.     show:
  42.       extremas: true
  43.       legend_value: false
  44.       in_header: before_now
  45.       name_in_header: false
  46.     extend_to: end
  47.     color_threshold:
  48.       - value: -10
  49.         color: '#a9cce3'
  50.       - value: 0
  51.         color: '#27ae60'
  52.       - value: 0.5
  53.         color: '#82e0aa'
  54.       - value: 1
  55.         color: '#f7dc6f'
  56.       - value: 2
  57.         color: '#f8c471'
  58.       - value: 2.5
  59.         color: '#f0b27a'
  60.       - value: 3
  61.         color: '#d35400'
  62.       - value: 3.5
  63.         color: '#cd6155'
  64.       - value: 4
  65.         color: '#e74c3c'
  66.   - entity: sensor.nordpool_kwh_se3_sek_3_10_025
  67.     name: Imorgon
  68.     data_generator: >
  69.      return entity.attributes.raw_tomorrow.map((entry) => { return [new
  70.       Date(entry.start), entry.value]; });
  71.     type: column
  72.     float_precision: 2
  73.     offset: '-1ns'
  74.     show:
  75.       legend_value: false
  76.       in_header: false
  77.       extremas: true
  78.     extend_to: end
  79.     color_threshold:
  80.       - value: -10
  81.         color: '#a9cce3'
  82.       - value: 0
  83.         color: '#27ae60'
  84.       - value: 0.5
  85.         color: '#82e0aa'
  86.       - value: 1
  87.         color: '#f7dc6f'
  88.       - value: 2
  89.         color: '#f8c471'
  90.       - value: 2.5
  91.         color: '#f0b27a'
  92.       - value: 3
  93.         color: '#d35400'
  94.       - value: 3.5
  95.         color: '#cd6155'
  96.       - value: 4
  97.         color: '#e74c3c'
  98. experimental:
  99.   color_threshold: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement