Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type: custom:apexcharts-card
- graph_span: 24h
- update_interval: 5m
- span:
- start: day
- show:
- last_updated: false
- legend: false
- now:
- show: true
- label: Now
- color: yellow
- header:
- show: true
- title: Electriciteitsprijzen Vandaag (€/kwh)
- show_states: true
- colorize_states: true
- yaxis:
- - id: Prijs
- decimals: 2
- experimental:
- color_threshold: true
- disable_config_validation: true
- series:
- - entity: sensor.entso_e_average_electricity_price
- show:
- datalabels: false
- extremas: true
- in_header: before_now
- name: Energy Price net
- stroke_width: 0
- float_precision: 3
- type: column
- opacity: 0.7
- color: yellow
- data_generator: |
- return entity.attributes.prices.map((entry) => {
- return [new Date(entry.time), entry.price];
- });
- - entity: sensor.entso_e_average_electricity_price
- name: Energy Price incl costs
- show:
- datalabels: false
- extremas: true
- in_header: before_now
- stroke_width: 0
- float_precision: 3
- type: column
- opacity: 0.7
- color_threshold:
- - value: 0
- color: lightblue
- - value: 0.15
- color: lightgreen
- - value: 0.2
- color: darkgreen
- - value: 0.3
- color: orange
- - value: 0.35
- color: red
- data_generator: |
- return entity.attributes.prices.map((entry) => {
- return [new Date(entry.time), (entry.price + 0.10880 +0.02481)*1.21];
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement