feat: separate interactive dashboard into two standalone panels - #20
Merged
Conversation
|
🚀 Preview deployment ready! URL: https://zeroklaw-issue-16-separate-d.zerokrab-boundless-jupyter.pages.dev |
mintybasil
requested changes
Mar 30, 2026
Comment on lines
+413
to
+424
| "print(\"### Profit Explorer\")\n", | ||
| "build_profit_dashboard(revenue_df)" | ||
| ], | ||
| "outputs": [], | ||
| "execution_count": null | ||
| }, | ||
| { | ||
| "cell_type": "code", | ||
| "id": "panel-breakeven-dashboard", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "print(\"### Break-even Analysis\")\n", |
Member
There was a problem hiding this comment.
The print statements here are invalid and unnecessary, please remove
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Splits the two-tab dashboard into two separate, standalone Panel dashboards rendered inline — no more tab switching.
Changes:
build_profit_dashboard(df)— Profit Explorer with ZKC price + market reward slidersbuild_breakeven_dashboard(df)— Break-even analysis with only the market reward slider (ZKC price not needed here)build_dashboard()kept as backward-compatible wrapper (stacks both panels)Closes #16