Skip to content

Commit f150b0b

Browse files
authored
Merge pull request #213 from plotly/issue210
Changed PlotOptions.Strip to false
2 parents 20bea13 + 4ee0a3a commit f150b0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plotly/plotlyfig.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
obj.PlotOptions.WorldReadable = true;
5757
obj.PlotOptions.ShowURL = true;
5858
obj.PlotOptions.OpenURL = true;
59-
obj.PlotOptions.Strip = true;
59+
obj.PlotOptions.Strip = false;
6060
obj.PlotOptions.Visible = 'on';
6161
obj.PlotOptions.TriangulatePatch = false;
6262

plotly/plotlyfig_aux/handlegraphics/updateBar.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
case 'grouped'
9090
obj.layout.barmode = 'group';
9191
case 'stacked'
92-
obj.layout.barmode = 'stack';
92+
obj.layout.barmode = 'relative';
9393
end
9494

9595
%-------------------------------------------------------------------------%

plotly/plotlyfig_aux/helpers/extractLineMarker.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
end
5656

5757
marker.symbol = marksymbol;
58-
58+
marker.maxdisplayed=length(line_data.MarkerIndices)+1;
5959
end
6060

6161
%-------------------------------------------------------------------------%

0 commit comments

Comments
 (0)