We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c6e84f + 5bf88c2 commit e150078Copy full SHA for e150078
2 files changed
plotly/plotlyfig_aux/handlegraphics/updateStem.m
@@ -61,4 +61,12 @@
61
62
obj.data{dataIndex} = stem_temp_data;
63
64
+%------------------------------------------------------------------------%
65
+
66
+%-put y-zeroline-%
67
+[~, ysource] = findSourceAxis(obj,dataIndex);
68
+eval(['obj.layout.yaxis' num2str(ysource) '.zeroline = true;']);
69
70
71
72
end
plotly/plotlyfig_aux/helpers/extractLineMarker.m
@@ -55,7 +55,9 @@
55
56
57
marker.symbol = marksymbol;
58
- marker.maxdisplayed=length(line_data.MarkerIndices)+1;
+ if isfield(line_data, 'MarkerIndices')
59
+ marker.maxdisplayed=length(line_data.MarkerIndices)+1;
60
+ end
%-------------------------------------------------------------------------%
0 commit comments