{{ title }}

@if (loading) {

Loading energy price data...

} @if (error) {

{{ error }}

} @if (!loading && !error) { }
@if (!loading && !error && priceData.length > 0) {

Hour-by-hour prices

@for (price of priceData; track price.time_start) { }
Time SEK/kWh EUR/kWh
{{ price.time_start | date:'HH:00' }} - {{ price.time_end | date:'HH:00' }} {{ price.SEK_per_kWh | number:'1.2-4' }} {{ price.EUR_per_kWh | number:'1.2-4' }}
}