-
Notifications
You must be signed in to change notification settings - Fork 1
Creating and updating figures section #26
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
Changes from 1 commit
a7c9d5a
22d394f
cda3d67
1a9fe7b
61000ba
51ed6f4
8bd1f53
9147f27
58a9154
4825440
28f1d8f
ff64f59
c0f6c8c
cacbc37
d7d6a51
9d14e21
6e47754
a82dd4c
89b03a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,8 @@ As an alternative to working with Python dictionaries, plotly.py provides a hier | |
|
||
1. Graph objects provide precise data validation. So if you provide an invalid property name or an invalid property value, an exception will be raised with a helpful error message describing the problem. | ||
2. Graph objects contain descriptions of each property as Python docstrings. You can use these docstrings to learn about the available properties as an alternative to consulting the *Full Reference*. | ||
3. Graph objects support higher-level convenience functions for making updates to already constructed figures, as described below. | ||
3. Properties of graph objects can be accessed using dictionary-style key lookup (e.g. `fig["layout"]`) or class-style property access (e.g. `fig.layout`). | ||
4. Graph objects support higher-level convenience functions for making updates to already constructed figures, as described below. | ||
|
||
nicolaskruchten marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Graph objects are stored in a hierarchy of modules under the `plotly.graph_objects` package. Here is an example of one way that the figure above could be constructed using graph objects. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it important for users (as opposed to devs) to mention the "hierarchy of modules"? How about "stored under the ... package"? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only insofar as it's important that people look for |
||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.