fix plotly default marker symbol dict

This commit is contained in:
marecabo 2019-08-05 10:26:35 +02:00
parent 9fdea8ca37
commit e0d214446c

View file

@ -39,7 +39,7 @@ from plotly.graph_objs import Scatter, Scatter3d, Line,\
from plotly.exceptions import PlotlyDictKeyError from plotly.exceptions import PlotlyDictKeyError
SYMBOL_MAP = { SYMBOL_MAP = {
'o': 'dot', 'o': 'circle-dot',
'v': 'triangle-down', 'v': 'triangle-down',
'^': 'triangle-up', '^': 'triangle-up',
'<': 'triangle-left', '<': 'triangle-left',
@ -47,7 +47,7 @@ SYMBOL_MAP = {
's': 'square', 's': 'square',
'+': 'cross', '+': 'cross',
'x': 'x', 'x': 'x',
'*': 'x', # no star yet in plotly!! '*': 'star',
'D': 'diamond', 'D': 'diamond',
'd': 'diamond', 'd': 'diamond',
} }