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
SYMBOL_MAP = {
'o': 'dot',
'o': 'circle-dot',
'v': 'triangle-down',
'^': 'triangle-up',
'<': 'triangle-left',
@ -47,7 +47,7 @@ SYMBOL_MAP = {
's': 'square',
'+': 'cross',
'x': 'x',
'*': 'x', # no star yet in plotly!!
'*': 'star',
'D': 'diamond',
'd': 'diamond',
}