Skip to content

Commit 175ec68

Browse files
Merge pull request #3774 from plotly/timeline_pattern
timeline patterns
2 parents 6e924a0 + dc0d559 commit 175ec68

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## UNRELEASED
6+
7+
### Added
8+
9+
- `pattern_shape` options now available in `px.timeline()`
10+
511
## [5.8.2] - 2022-06-10
612

713
### Fixed

Diff for: packages/python/plotly/plotly/express/_chart_types.py

+3
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@ def timeline(
387387
x_end=None,
388388
y=None,
389389
color=None,
390+
pattern_shape=None,
390391
facet_row=None,
391392
facet_col=None,
392393
facet_col_wrap=0,
@@ -402,6 +403,8 @@ def timeline(
402403
labels=None,
403404
color_discrete_sequence=None,
404405
color_discrete_map=None,
406+
pattern_shape_sequence=None,
407+
pattern_shape_map=None,
405408
color_continuous_scale=None,
406409
range_color=None,
407410
color_continuous_midpoint=None,

0 commit comments

Comments
 (0)