-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Documentation for 5.10 features #3818
New issue
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
Conversation
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
doc/python/selections.md
Outdated
fig.show() | ||
``` | ||
|
||
## Styling New Selections |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's move this section above Fill Color for Active Selections
section as it is a more useful attribute to know.
Fantastic! Thank you @LiamConnors 🏆 |
@LiamConnors the build is failing here because you haven't merged |
thumbnail: thumbnail/make_selection.jpg | ||
--- | ||
|
||
## Adding Selections to Cartesian Subplots |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall this document is great, but one thing which is missing is some indication to the reader of how to retrieve the selection values! We will need a link to some Dash documentation or something that folks can follow to actually do something with the selection once the user does it!
Do the selected values come back out using fig.full_figure_for_development()
in a way that we can statically demo in the docs here?
Documentation PR
doc/README.md
filedoc-prod
branch OR it targets themaster
branchpx
example if at all possibleplotly.graph_objects as go
/plotly.express as px
/plotly.io as pio
df
fig = <something>
call is high up in each new/modified example (eitherpx.<something>
ormake_subplots
orgo.Figure
)fig.add_*
andfig.update_*
rather thango.Figure(data=..., layout=...)
in every new/modified examplefig.add_shape
andfig.update_xaxes
are used instead of bigfig.update_layout
calls in every new/modified examplefig.show()
is at the end of each new/modified exampleplotly.plot()
andplotly.iplot()
are not used in any new/modified example