We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56abff commit 3fe31cfCopy full SHA for 3fe31cf
1 file changed
doc/python/axes.md
@@ -734,12 +734,11 @@ To use a reversed axis while specifying only an upper or lower bound for the ran
734
735
```python
736
import plotly.express as px
737
+
738
df = px.data.iris()
739
740
fig = px.scatter(df, x="sepal_width", y="sepal_length", facet_col="species")
-fig.update_yaxes(range=[9, None],
741
- autorange="reversed"
742
- )
+fig.update_yaxes(range=[9, None], autorange="reversed")
743
744
fig.show()
745
```
0 commit comments