File tree 1 file changed +3
-3
lines changed
packages/python/plotly/plotly/express
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ def bar(
307
307
return make_figure (
308
308
args = locals (),
309
309
constructor = go .Bar ,
310
- trace_patch = dict (orientation = orientation , textposition = "auto" ),
310
+ trace_patch = dict (textposition = "auto" ),
311
311
layout_patch = dict (barmode = barmode ),
312
312
)
313
313
@@ -1368,7 +1368,7 @@ def funnel(
1368
1368
color_discrete_sequence = None ,
1369
1369
color_discrete_map = {},
1370
1370
opacity = None ,
1371
- orientation = "h" ,
1371
+ orientation = None ,
1372
1372
log_x = False ,
1373
1373
log_y = False ,
1374
1374
range_x = None ,
@@ -1382,7 +1382,7 @@ def funnel(
1382
1382
In a funnel plot, each row of `data_frame` is represented as a
1383
1383
rectangular sector of a funnel.
1384
1384
"""
1385
- return make_figure (args = locals (), constructor = go .Funnel , )
1385
+ return make_figure (args = locals (), constructor = go .Funnel )
1386
1386
1387
1387
1388
1388
funnel .__doc__ = make_docstring (funnel )
You can’t perform that action at this time.
0 commit comments