The input `LineSpec` isn't changing marker's color nor line style. ``` X = linspace(0,4*pi,20); Y = sin(X); figure stairs(Y,'--hg') fig2plotly(); ``` The previous code should produce green hexagrams with a dashed line, however, it plots them with the default blue color and a solid line: Expected and generated (https://chart-studio.plotly.com/~xarico10/419/#/) plots: <img width="495" alt="Captura de Pantalla 2021-07-26 a la(s) 11 54 54 a m" src="https://user-images.githubusercontent.com/87881895/127028362-712b2b88-47c3-4d06-9889-449e4d70d675.png"> <img width="725" alt="Captura de Pantalla 2021-07-26 a la(s) 11 54 29 a m" src="https://user-images.githubusercontent.com/87881895/127028315-857e41f8-dfe0-4a78-baf9-fdd0869a016c.png"> Examples on using the `LineSpec` input argument can be found on: https://www.mathworks.com/help/matlab/ref/linespec.html