Skip to content

Commit d601477

Browse files
Merge branch 'doc-prod'
2 parents 76659e2 + 5dcec66 commit d601477

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Diff for: doc/python/multiple-axes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jupyter:
2222
pygments_lexer: ipython3
2323
version: 3.7.2
2424
plotly:
25-
description: How to make a graph with multiple axes in python.
25+
description: How to make a graph with multiple axes (dual y-axis plots, plots with secondary axes) in python.
2626
display_as: file_settings
2727
language: python
2828
layout: base
@@ -225,4 +225,4 @@ fig.show()
225225
```
226226

227227
#### Reference
228-
All of the y-axis properties are found here: https://plotly.com/python/reference/#YAxis. For more information on creating subplots see the [Subplots in Python](/python/subplots/) section.
228+
All of the y-axis properties are found here: https://plotly.com/python/reference/#YAxis. For more information on creating subplots see the [Subplots in Python](/python/subplots/) section.

Diff for: doc/python/tick-formatting.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fig.update_layout(yaxis_tickformat = '%')
9898
fig.show()
9999
```
100100

101-
#### Using Tickformat Atttribute - Date/Time
101+
#### Using Tickformat Attribute - Date/Time
102102

103103

104104
For more date/time formatting types, see: https://github.com/d3/d3-time-format/blob/master/README.md
@@ -194,4 +194,4 @@ fig.show()
194194
```
195195

196196
#### Reference
197-
See https://plotly.com/python/reference/#layout-xaxis for more information and chart attribute options!
197+
See https://plotly.com/python/reference/#layout-xaxis for more information and chart attribute options!

Diff for: doc/python/time-series.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ fig.show()
184184

185185
The `rangebreaks` attribute available on x- and y-axes of type `date` can be used to hide certain time-periods. In the example below, we show two plots: one in default mode to show gaps in the data, and one where we hide weekends and holidays to show an uninterrupted trading history. Note the smaller gaps between the grid lines for December 21 and January 4, where holidays were removed. Check out the reference for more options: https://plotly.com/python/reference/#layout-xaxis-rangebreaks
186186

187+
> Note: a known limitation of this feature is that it does not support `scattergl` traces. When using this feature on plots with more than a few hundred data points with `px.scatter` or `px.line` or `px.area`, you may need to pass in `render_mode="svg"` to ensure that the underlying trace type is `scatter` and not `scattergl`.
188+
187189
```python
188190
import plotly.express as px
189191
import pandas as pd
@@ -208,4 +210,4 @@ fig.update_xaxes(
208210
]
209211
)
210212
fig.show()
211-
```
213+
```

0 commit comments

Comments
 (0)