Skip to content

Commit ba950ef

Browse files
more links
1 parent 6106bff commit ba950ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: doc/python/styling-plotly-express.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jupyter:
4242
More specifically, here are the 4 ways you can style and customize figures made with Plotly Express:
4343

4444
1. Control common parameters like width & height, titles, labeling and colors using built-in Plotly Express function arguments
45-
2. Updating the figure attributes using update methods or by directly setting attributes
46-
3. Using Plotly's theming/templating mechanism via the `template` argument to every Plotly Express function
45+
2. Updating the figure attributes using [update methods or by directly setting attributes](/python/creating-and-updating-figures/)
46+
3. Using Plotly's [theming/templating mechanism](/python/templates/) via the `template` argument to every Plotly Express function
4747
4. Setting default values for common parameters using `px.defaults`
4848

4949
### Built-in Plotly Express Styling Arguments
@@ -90,7 +90,7 @@ fig.show()
9090

9191
### Updating or Modifying Figures made with Plotly Express
9292

93-
If none of the built-in Plotly Express arguments allow you to customize the figure the way you need to, you can use the `update_*` and `add_*` methods on the `graph_objects.Figure` object returned by the PX function to make any further modifications to the figure. This approach is the one used throughout the Plotly.py documentation to [customize axes](/python/axes/), control [legends](/python/legend/) and [colorbars](/python/colorscales/), add [shapes](/python/shapes/) and [annotations](/python/text-and-annotations/) etc.
93+
If none of the built-in Plotly Express arguments allow you to customize the figure the way you need to, you can use [the `update_*` and `add_*` methods](/python/creating-and-updating-figures/) on the `graph_objects.Figure` object returned by the PX function to make any further modifications to the figure. This approach is the one used throughout the Plotly.py documentation to [customize axes](/python/axes/), control [legends](/python/legend/) and [colorbars](/python/colorscales/), add [shapes](/python/shapes/) and [annotations](/python/text-and-annotations/) etc.
9494

9595
Here is the same figure as above, with some additional customizations to the axes and legend via `.update_yaxes()`, and `.update_layout()`, as well as some annotations added via `.add_shape()` and `.add_annotation()`.
9696

0 commit comments

Comments
 (0)