-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specifying limits for rolling graph builder #927
Conversation
For certain applications, it is useful to be able to specify "hard" limits for the visualizer, in cases where the range is fixed and known. However, it can also be useful to allow for runtime editable ranges where the range is unknown or experiment-specific. To allow for both situations, we could expose range properties in the builder classes that take precedence over visualizer editable ranges, but only if they are specified. |
Since |
This PR adds extended visualization configuration options for the builders in the design visualizers package, to allow specifying range and capacity limits. For consistency, we are also obsoleting redundant visualization properties in the builder nodes.
Fixes #926
Fixes #858