From d75fbf32b1a7a65e0ed702470e95301426d8f69c Mon Sep 17 00:00:00 2001 From: Agustin Date: Wed, 11 Aug 2021 09:47:44 -0500 Subject: [PATCH 1/3] test --- plotly/getplotlyfig.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/getplotlyfig.m b/plotly/getplotlyfig.m index 0b26c2ae..74365645 100644 --- a/plotly/getplotlyfig.m +++ b/plotly/getplotlyfig.m @@ -17,7 +17,7 @@ %-------------------------------------------------------------------------% %--CONSTRUCT PLOTLY FIGURE OBJECT--% -p = plotlyfig('Visible','off'); +p = plotlyfig('Visible','off') %-------------------------------------------------------------------------% From 627c1416fcf73a7ab620fc202e773467b99b7dc2 Mon Sep 17 00:00:00 2001 From: Agustin Date: Wed, 11 Aug 2021 10:53:44 -0500 Subject: [PATCH 2/3] back to original version --- plotly/getplotlyfig.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/getplotlyfig.m b/plotly/getplotlyfig.m index 74365645..0b26c2ae 100644 --- a/plotly/getplotlyfig.m +++ b/plotly/getplotlyfig.m @@ -17,7 +17,7 @@ %-------------------------------------------------------------------------% %--CONSTRUCT PLOTLY FIGURE OBJECT--% -p = plotlyfig('Visible','off') +p = plotlyfig('Visible','off'); %-------------------------------------------------------------------------% From 6fa3e9645b50ddd1a4057ee896503993e7155560 Mon Sep 17 00:00:00 2001 From: Agustin Date: Fri, 13 Aug 2021 15:31:13 -0500 Subject: [PATCH 3/3] fixed issue 235 --- plotly/plotlyfig_aux/helpers/extractLineMarker.m | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/plotly/plotlyfig_aux/helpers/extractLineMarker.m b/plotly/plotlyfig_aux/helpers/extractLineMarker.m index 06fec854..41eb2542 100644 --- a/plotly/plotlyfig_aux/helpers/extractLineMarker.m +++ b/plotly/plotlyfig_aux/helpers/extractLineMarker.m @@ -87,13 +87,7 @@ case 'none' markercolor = 'rgba(0,0,0,0)'; case 'auto' - if ~strcmp(axis_data.Color,'none') - col = 255*axis_data.Color; - markercolor = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')']; - else - col = 255*figure_data.Color; - markercolor = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')']; - end + markercolor = 'rgba(0, 0.4470, 0.7410,1)'; end end