File tree 5 files changed +17
-19
lines changed
5 files changed +17
-19
lines changed Original file line number Diff line number Diff line change @@ -677,9 +677,8 @@ function validate(obj)
677
677
updateData(obj ,n );
678
678
679
679
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;
683
682
end
684
683
catch
685
684
% TODO to the future
Original file line number Diff line number Diff line change 15
15
updatePolarplot(obj , dataIndex );
16
16
elseif strcmpi(obj .PlotOptions .TreatAs , ' contour3' )
17
17
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 );
18
22
end
19
23
20
24
% -update plot based on plot call class-%
Original file line number Diff line number Diff line change @@ -66,23 +66,14 @@ function updateLineseries(obj,plotIndex)
66
66
% -------------------------------------------------------------------------%
67
67
68
68
% -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' );
72
71
73
- if length(x )==5 && length(y )==5 && x(2 )==x(4 ) && y(2 )==y(4 )
74
- ispolar = true ;
75
- end
72
+ % -------------------------------------------------------------------------%
76
73
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 ;
86
77
87
78
% -------------------------------------------------------------------------%
88
79
Original file line number Diff line number Diff line change 28
28
switch line_data .Marker
29
29
case ' .'
30
30
marksymbol = ' circle' ;
31
+ marker.size = 0.4 * line_data .MarkerSize ;
31
32
case ' o'
32
33
marksymbol = ' circle' ;
34
+ marker.size = 0.4 * line_data .MarkerSize ;
33
35
case ' x'
34
36
marksymbol = ' x-thin-open' ;
35
37
case ' +'
Original file line number Diff line number Diff line change 50
50
end
51
51
52
52
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)' ;
53
56
54
57
end
55
58
end
56
59
57
60
% -------------------------------------------------------------------------%
58
61
59
62
% -PATCH EDGE COLOR-%
60
-
61
63
if isnumeric(patch_data .EdgeColor )
62
64
63
65
col = 255 * patch_data .EdgeColor ;
You can’t perform that action at this time.
0 commit comments