Skip to content

Commit

Permalink
bug - replace dot markers with circles as dots don't show up
Browse files Browse the repository at this point in the history
  • Loading branch information
loopiezlol committed Oct 23, 2021
1 parent 6cfae87 commit 67753b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backtrader_plotting/bokeh/marker.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""marker definition used to generate markers in bokeh using matplotlib notation"""
_mrk_fncs = {
# "." m00 point
'.': ('dot', ["color"], {"size": 1}, {}),
'.': ('circle', ["color"], {"size": 1}, {}),
# "," m01 pixel
',': ('dot', ["color"], {"size": 2}, {}),
',': ('circle', ["color"], {"size": 2}, {}),
# "o" m02 circle
'o': ('circle', ["color", "size"], {}, {}),
# "v" m03 triangle_down
Expand Down

0 comments on commit 67753b9

Please sign in to comment.