Help with apexcharts #30
-
Hi! I'm pretty much a beginner, so bear with me. I've been using the nordpool integration for a while, but want to check out entso-e to see if it does a couple of things better. But before i start playing with the data i'd like to see it to make sure everything works right. I currently have this setup in apexcharts showing yesterdays, todays and tomorrows prices, and would like to do the same with entso-e so i can compare the data: `series:
I can make today work (partially anyways) with the example from the documentation, but i have no idea what to do with yesterday and tomorrow. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
in the datagenerator you can change for your nordpool charts you can just change the |
Beta Was this translation helpful? Give feedback.
-
Got it mostly working now, this code seems to show yesterday, today and tomorrow correctly. The colour change between past and future data is still not working so tips on that is appreciated.
|
Beta Was this translation helpful? Give feedback.
-
Well, seems i was over-complicating as usual... I just moved the top entity to the bottom, and it now shows up as intended. So this is now solved, thanks for putting me on the right track! |
Beta Was this translation helpful? Give feedback.
-
So the new update completely broke everything for me... Any hints on how to fix it? |
Beta Was this translation helpful? Give feedback.
-
Never mind, I had not realized i needed to change the sensor to _average_electricity_price_today... |
Beta Was this translation helpful? Give feedback.
in the datagenerator you can change
entity.attributes.prices_today
toentity.attributes.prices_tomorrow
orentity.attributes.prices
for all available prices. Yesterdays data you can just show by using the current_price sensor as this records all prices up to the current time.for your nordpool charts you can just change the
entity: sensor.nordpool_kwh_trheim_nok_3_095_025
to a entsoe entity and chan…