Skip to content
9 changes: 5 additions & 4 deletions doc/python/renderers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Copy link
Contributor

Choose a reason for hiding this comment

The 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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs to change because (new) number 3 is not discussed on this page but (updated) number 4 is

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh sorry this is still in draft :)


Expand Down