We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
h2o_wave 0.22.0
The low - high value is the two number concatenated together which seems strange
low - high
from h2o_wave import main, app, Q, ui, data @app('/') async def serve(q: Q): q.page['example'] = ui.plot_card( box='1 1 7 5', title='Interval', data=data('price low high', 8, rows=[ (4, 50, 100), (6, 100, 150), (8, 150, 200), (16, 350, 400), (18, 400, 450), (10, 200, 250), (12, 250, 300), (14, 300, 350), ]), plot=ui.plot([ui.mark( type='interval', y='=price', y_min=0, x1='=low', x2='=high', )]) ) await q.page.save()
The text was updated successfully, but these errors were encountered:
Thanks for reporting @mtanco! It must be the bug introduced by #1330. I've just created a PR with the fix.
Sorry, something went wrong.
fix: Ranged plot tooltip values are not shown properly #1473 (#1486)
f8d19a3
marek-mihok
Successfully merging a pull request may close this issue.
Wave SDK Version, OS
h2o_wave 0.22.0
Actual behavior
The
low - high
value is the two number concatenated together which seems strangeExpected behavior
Steps To Reproduce
The text was updated successfully, but these errors were encountered: