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 cf5bfa0 commit ef82c93Copy full SHA for ef82c93
doc/python/shapes.md
@@ -645,7 +645,7 @@ import plotly.graph_objects as go
645
from plotly.subplots import make_subplots
646
647
# Create Subplots
648
-fig = make_subplots(rows=2, cols=2, start_cell='bottom-left')
+fig = make_subplots(rows=2, cols=2)
649
650
fig.add_trace(go.Scatter(x=[2, 6], y=[1,1]), row=1, col=1)
651
fig.add_trace(go.Bar(x=[1,2,3], y=[4,5,6]), row=1, col=2)
@@ -656,7 +656,7 @@ fig.add_trace(go.Bar(x=[11,13,15], y=[8,11,20]), row=2, col=2)
656
fig.update_layout(
657
shapes=[
658
dict(type="line", xref="x1", yref="y1",
659
- x0=3, y0=0.5, x1=5, y1=0.8),
+ x0=3, y0=0.5, x1=5, y1=0.8, line_width=3),
660
dict(type="rect", xref="x2", yref='y2',
661
x0=4, y0=2, x1=5, y1=6),
662
dict(type="rect", xref="x3", yref="y3",
0 commit comments