Skip to content

Commit

Permalink
Merge pull request #475 from bvenn/#474-fix-patternshape
Browse files Browse the repository at this point in the history
Fix pattern shape mix-up between ascending and descending
  • Loading branch information
kMutagene authored Nov 13, 2024
2 parents 56cc563 + 82dc93b commit c671e1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plotly.NET/CommonAbstractions/StyleParams.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2533,8 +2533,8 @@ module StyleParam =
static member toString =
function
| None -> ""
| DiagonalDescending -> "/"
| DiagonalAscending -> """\"""
| DiagonalDescending -> """\"""
| DiagonalAscending -> "/"
| DiagonalChecked -> "x"
| HorizontalLines -> "-"
| VerticalLines -> "|"
Expand Down

0 comments on commit c671e1e

Please sign in to comment.