You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python/multiple-axes.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ jupyter:
22
22
pygments_lexer: ipython3
23
23
version: 3.7.2
24
24
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.
26
26
display_as: file_settings
27
27
language: python
28
28
layout: base
@@ -225,4 +225,4 @@ fig.show()
225
225
```
226
226
227
227
#### 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.
Copy file name to clipboardExpand all lines: doc/python/time-series.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -184,6 +184,8 @@ fig.show()
184
184
185
185
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
186
186
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`.
0 commit comments