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
Allow render the result with ploty. The wraped function return a plotly figure object:
from oneface import one, Arg import plotly.express as px import numpy as np @one def draw_random_points(n: Arg[int, [1, 10000]] = 100): x, y = np.random.random(n), np.random.random(n) fig = px.scatter(x=x, y=y) return fig draw_random_points.dash_app( result_show_type='plotly', debug=True)
The text was updated successfully, but these errors were encountered:
implement flask embed(issue #6)
973768d
No branches or pull requests
Allow render the result with ploty. The wraped function return a plotly figure object:
The text was updated successfully, but these errors were encountered: