Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit c6c91fa

Browse files
finish strip()
1 parent d9c4f96 commit c6c91fa

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

plotly_express/_chart_types.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -396,18 +396,19 @@ def strip(
396396
animation_group=None,
397397
category_orders={},
398398
labels={},
399-
color_discrete_sequence=default_qualitative,
399+
color_discrete_sequence=None,
400400
color_discrete_map={},
401401
orientation="v",
402+
stripmode="group",
402403
jitter=None,
403404
log_x=False,
404405
log_y=False,
405406
range_x=None,
406407
range_y=None,
407408
title=None,
408-
template=default_template,
409-
width=default_width,
410-
height=default_height,
409+
template=None,
410+
width=None,
411+
height=None,
411412
):
412413
"""
413414
In a strip plot each row of `data_frame` is represented as a jittered mark within categories.
@@ -426,7 +427,7 @@ def strip(
426427
x0=" ",
427428
y0=" ",
428429
),
429-
layout_patch=dict(boxmode="group"),
430+
layout_patch=dict(boxmode=stripmode),
430431
)
431432

432433

0 commit comments

Comments
 (0)