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
Multiple zoom out disappear the object !
Example:
import dash import dash_cytoscape as cyto from dash import html app = dash.Dash(__name__) app.layout = html.Div([ cyto.Cytoscape( id='cytoscape', elements=[ {'data': {'id': 'one', 'label': 'Node 1'}, 'position': {'x': 50, 'y': 50}}, {'data': {'id': 'two', 'label': 'Node 2'}, 'position': {'x': 200, 'y': 200}}, {'data': {'source': 'one', 'target': 'two','label': 'Node 1 to 2'}} ], layout={'name': 'preset'} ) ]) if __name__ == '__main__': app.run_server(debug=True)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Multiple zoom out disappear the object !
Steps/Code to Reproduce
Example:
Expected Results
Actual Results
Versions
The text was updated successfully, but these errors were encountered: