- 
 
- 
  Notifications
 You must be signed in to change notification settings 
- Fork 2.7k
Add more ways to make charts #5369
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
1b370d4
 81c0ca7
 95174ca
 1e17413
 34b62e7
 7eb2278
 4b73be5
 9998408
 5e9f27d
 16f6488
 6429bd5
 4075efd
 3559dce
 9f7440e
 File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -38,13 +38,14 @@ jupyter: | |
|  | ||
| Plotly's Python graphing library, `plotly.py`, gives you a wide range of options for how and where to display your figures. | ||
|  | ||
| In general, there are five different approaches you can take in order to display `plotly` figures: | ||
| In general, there are six different approaches you can take in order to display `plotly` figures: | ||
| 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. I don't see the value of a numbered list here (it's not like these are referenced by number later on the page). Rather than risk this coming off as a complex procedure to users who are skimming, let's make it an unordered list. | ||
|  | ||
| 1. Using the `renderers` framework in the context of a script or notebook (the main topic of this page) | ||
| 2. Using [Dash](https://dash.plot.ly) in a web app context | ||
| 3. Using a [`FigureWidget` rather than a `Figure`](https://plotly.com/python/figurewidget/) in an [`ipywidgets` context](https://ipywidgets.readthedocs.io/en/stable/) | ||
| 4. By [exporting to an HTML file](https://plotly.com/python/interactive-html-export/) and loading that file in a browser immediately or later | ||
| 5. By [rendering the figure to a static image file using Kaleido](https://plotly.com/python/static-image-export/) such as PNG, JPEG, SVG, PDF or EPS and loading the resulting file in any viewer | ||
| 3. Using [Plotly Studio](https://plotly.com/studio) to generate charts using natural language | ||
| 4. Using a [`FigureWidget` rather than a `Figure`](https://plotly.com/python/figurewidget/) in an [`ipywidgets` context](https://ipywidgets.readthedocs.io/en/stable/) | ||
| 5. By [exporting to an HTML file](https://plotly.com/python/interactive-html-export/) and loading that file in a browser immediately or later | ||
| 6. By [rendering the figure to a static image file using Kaleido](https://plotly.com/python/static-image-export/) such as PNG, JPEG, SVG, PDF or EPS and loading the resulting file in any viewer | ||
|  | ||
| Each of the first three approaches is discussed below. | ||
|   | ||
|  | ||
|  | ||