Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create blueprint for plot example (#5518)
### What - Builds on top of #5517 Now that we have origin-based content defaults, I'm happy with this blueprint. ```python blueprint = rrb.Blueprint( rrb.Horizontal( rrb.Grid( rrb.BarChartView(name="Bar Chart", origin="/bar_chart"), rrb.TimeSeriesView(name="Curves", origin="/curves"), rrb.TimeSeriesView(name="Trig", origin="/trig"), rrb.TimeSeriesView(name="Classification", origin="/classification"), ), rrb.TextDocumentView(name="Description", origin="/description"), column_shares=[2, 1], ), rrb.SelectionPanel(expanded=False), rrb.TimePanel(expanded=False), ) ``` ![image](https://github.com/rerun-io/rerun/assets/3312232/fad8a49f-5541-420f-b382-f27509bbed81) ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using newly built examples: [app.rerun.io](https://app.rerun.io/pr/5518/index.html) * Using examples from latest `main` build: [app.rerun.io](https://app.rerun.io/pr/5518/index.html?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [app.rerun.io](https://app.rerun.io/pr/5518/index.html?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! - [PR Build Summary](https://build.rerun.io/pr/5518) - [Docs preview](https://rerun.io/preview/eab89b24fcee4cf40f47c7f0da6352c9dc4bf45d/docs) <!--DOCS-PREVIEW--> - [Examples preview](https://rerun.io/preview/eab89b24fcee4cf40f47c7f0da6352c9dc4bf45d/examples) <!--EXAMPLES-PREVIEW--> - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)
- Loading branch information