Skip to content

Commit e8a80fe

Browse files
committed
reapply fixes from #4221, #3531, and #4231 - thanks @tanmaychimurkar, @Nicolas-Reyland, and @jegrami
1 parent 598f214 commit e8a80fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/python/animations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jupyter:
3737

3838
Several [Plotly Express](/python/plotly-express/) functions support the creation of animated figures through the `animation_frame` and `animation_group` arguments.
3939

40-
Here is an example of an animated scatter plot creating using Plotly Express. Note that you should always fix the `x_range` and `y_range` to ensure that your data remains visible throughout the animation.
40+
Here is an example of an animated scatter plot created with Plotly Express. Note that you should always fix the `x_range` and `y_range` to ensure that your data remains visible throughout the animation.
4141

4242
```python
4343
import plotly.express as px

doc/python/interactive-html-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Any figure can be saved as an HTML file using the `write_html` method. These HTM
4646
```python
4747
import plotly.express as px
4848

49-
fig =px.scatter(x=range(10), y=range(10))
49+
fig = px.scatter(x=range(10), y=range(10))
5050
fig.write_html("path/to/file.html")
5151
```
5252
<!-- #endregion -->

doc/python/legend.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ fig.show()
193193

194194
*New in 5.11*
195195

196-
Set the width of horizontal legend entries by setting `entrywidth`. Here we set it to `70` pixels. Pixels is the default unit for `entrywidth`, but you can set it to be a fraction of the plot width using `entrywidthmode='fraction`.
196+
Set the width of horizontal legend entries by setting `entrywidth`. Here we set it to `70` pixels. Pixels is the default unit for `entrywidth`, but you can set it to be a fraction of the plot width using `entrywidthmode='fraction'`.
197197

198198
```python
199199
import plotly.express as px

0 commit comments

Comments
 (0)