Skip to content

Commit 9621f30

Browse files
Merge pull request #355 from plotly/fix_plotmatrix_issues_used_in_ssim_baselines_matlab_code-examples_data-distribution-plots_plotmatrix
fix issues with plotmatrix function used in ssim_baselines/matlab/cod…
2 parents 671fe35 + f68c9db commit 9621f30

File tree

5 files changed

+17
-19
lines changed

5 files changed

+17
-19
lines changed

plotly/plotlyfig.m

+2-3
Original file line numberDiff line numberDiff line change
@@ -677,9 +677,8 @@ function validate(obj)
677677
updateData(obj,n);
678678

679679
try
680-
if (strcmp(obj.data{n}.type, 'bar') && update_opac(length(ax)-n))
681-
obj.data{1, n}.opacity = 0.9;
682-
obj.data{1, n}.marker.color = 'rgb(0,113.985,188.955)';
680+
if update_opac(length(ax)-n)
681+
% obj.data{1, n}.opacity = 0.9;
683682
end
684683
catch
685684
% TODO to the future

plotly/plotlyfig_aux/core/updateData.m

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
updatePolarplot(obj, dataIndex);
1616
elseif strcmpi(obj.PlotOptions.TreatAs, 'contour3')
1717
updateContour3(obj, dataIndex);
18+
elseif strcmpi(obj.PlotOptions.TreatAs, 'compass')
19+
updateLineseries(obj, dataIndex);
20+
elseif strcmpi(obj.PlotOptions.TreatAs, 'ezpolar')
21+
updateLineseries(obj, dataIndex);
1822
end
1923

2024
%-update plot based on plot call class-%

plotly/plotlyfig_aux/handlegraphics/updateLineseries.m

+6-15
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,14 @@ function updateLineseries(obj,plotIndex)
6666
%-------------------------------------------------------------------------%
6767

6868
%-if polar plot or not-%
69-
ispolar = false;
70-
x = plot_data.XData;
71-
y = plot_data.YData;
69+
treatas = obj.PlotOptions.TreatAs;
70+
ispolar = strcmpi(treatas, 'compass') || strcmpi(treatas, 'ezpolar');
7271

73-
if length(x)==5 && length(y)==5 && x(2)==x(4) && y(2)==y(4)
74-
ispolar = true;
75-
end
72+
%-------------------------------------------------------------------------%
7673

77-
%-if ezpolar or not-%
78-
len = length(obj.State.Axis.Handle.Children);
79-
if len > 1
80-
for l = 1:len
81-
if strcmpi(obj.State.Axis.Handle.Children(l).Type, 'Text')
82-
ispolar = true;
83-
end
84-
end
85-
end
74+
%-getting data-%
75+
x = plot_data.XData;
76+
y = plot_data.YData;
8677

8778
%-------------------------------------------------------------------------%
8879

plotly/plotlyfig_aux/helpers/extractLineMarker.m

+2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@
2828
switch line_data.Marker
2929
case '.'
3030
marksymbol = 'circle';
31+
marker.size = 0.4*line_data.MarkerSize;
3132
case 'o'
3233
marksymbol = 'circle';
34+
marker.size = 0.4*line_data.MarkerSize;
3335
case 'x'
3436
marksymbol = 'x-thin-open';
3537
case '+'

plotly/plotlyfig_aux/helpers/extractPatchFace.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,16 @@
5050
end
5151

5252
marker.color = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')'];
53+
54+
case 'auto'
55+
marker.color = 'rgb(0,113.985,188.955)';
5356

5457
end
5558
end
5659

5760
%-------------------------------------------------------------------------%
5861

5962
%-PATCH EDGE COLOR-%
60-
6163
if isnumeric(patch_data.EdgeColor)
6264

6365
col = 255*patch_data.EdgeColor;

0 commit comments

Comments
 (0)