Skip to content

Commit ff05431

Browse files
Merge pull request #339 from plotly/issue235
Fixed issue235
2 parents d24dca0 + 4c6a913 commit ff05431

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

plotly/plotlyfig_aux/helpers/extractLineMarker.m

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,7 @@
8787
case 'none'
8888
markercolor = 'rgba(0,0,0,0)';
8989
case 'auto'
90-
if ~strcmp(axis_data.Color,'none')
91-
col = 255*axis_data.Color;
92-
markercolor = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')'];
93-
else
94-
col = 255*figure_data.Color;
95-
markercolor = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')'];
96-
end
90+
markercolor = 'rgba(0, 0.4470, 0.7410,1)';
9791
end
9892
end
9993

0 commit comments

Comments
 (0)