I need to produce a plot in which a line is plotted in Pigment Blue (hex= #333399
) and with the o
marker.
I know I can plot the line in Blue with the o
marker by just calling:
line1 = ax1.plot(x, myvalues,'bo-', label='My Blue values')
Question: how should the line be changed if I wanted to still keep the marker and change the color from b
to #333399
?