-
Here's an issue I run into with other statically generated dashboards: suppose that I have data that has two columns that can be used to categorize it: We can give the user a dropdown for I want the selections available for Is it possible with Observable Framework? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you mean can you update data based on user selections in page, then yes, a Framework application is reactive: https://observablehq.com/framework/reactivity There are built-in tools and inputs for giving user controls that will cause graphs and page elements to re-render based on those choices. The specific behaviour you are describing (faceted filtering) is also possible to implement, but there's no built-in tooling for that. So nothing stopping you from doing it, but you'd be doing it. |
Beta Was this translation helpful? Give feedback.
If you mean can you update data based on user selections in page, then yes, a Framework application is reactive:
https://observablehq.com/framework/reactivity
There are built-in tools and inputs for giving user controls that will cause graphs and page elements to re-render based on those choices.
The specific behaviour you are describing (faceted filtering) is also possible to implement, but there's no built-in tooling for that.
So nothing stopping you from doing it, but you'd be doing it.