Store data across multiple plot cards? #489
-
I have a concept for a dashboard for viewing and comparing heating efficiency over and between long periods of time. For this I need (statistic) history from a long period of time (multiple years) with high precision (daily at least, but preferably even hourly). I wish to have multiple graphs that post-process and slice this data in several ways. One idea I had was to get the data once, store it in a global way (perhaps a web-page-wide or dashboard-wide JavaScript variable?) that is obtainable by all other cards. This because the data is simply very much, and obtaining it again for each card is costly in terms of time/responsiveness and bandwidth. Is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
It is but it will be a hack that may work a bit weird In the first card write a function that puts the data inside |
Beta Was this translation helpful? Give feedback.
It is but it will be a hack that may work a bit weird
In the first card write a function that puts the data inside
window.my_data
Then in the others use empty strings for the entity and load the data from window